/* Main CSS - Core styles and common elements */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  body {
    background-color: #1e1e1e;
    color: #d4d4d4;
    height: 100vh;
    overflow: hidden;
  }
  
  .compiler-container {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
  }
  
  /* Common Buttons Styles */
  .action-btn, .preview-btn {
    background-color: #333;
    border: 1px solid #555;
    border-radius: 4px;
    color: #c5c5c5;
    cursor: pointer;
    font-size: 14px;
    padding: 3px 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
  }
  
  .action-btn:hover, .preview-btn:hover {
    background-color: #444;
    color: #ffffff;
    border-color: #777;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .action-btn:active, .preview-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  /* Common title bar styling */
  .title-bar {
    padding: 0 10px;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bbbbbb;
    background-color: #2d2d2d;
    border-bottom: 1px solid #3c3c3c;
  }
  
  /* Workspace container */
  .workspace-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  
  /* Mobile explorer toggle */
  #mobile-explorer-toggle {
    display: none;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 20;
    background: #333;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
  }