body {
    font-family: "Noto Sans KR", Arial, sans-serif;
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
  }
  
  .container {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  h1, h2 {
    color: #333;
    text-align: center;
  }
  
  button {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 5px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #3367d6;
  }
  
  button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }
  
  .login-container {
    text-align: center;
    margin: 30px 0;
  }
  
  .recorder-container {
    display: none;
    margin-top: 20px;
  }
  
  .preview {
    width: 100%;
    max-width: 80%;
    height: auto;
    margin: 20px auto;
    display: block;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .controls {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  
  .status {
    text-align: center;
    margin: 10px 0;
    color: #666;
  }
  
  #recordButton {
    background-color: #db4437;
  }
  
  #recordButton:hover {
    background-color: #c53929;
  }
  
  #downloadButton {
    background-color: #0f9d58;
    display: none;
  }
  
  #downloadButton:hover {
    background-color: #0b8043;
  }
  
  #captureButton {
    background-color: #9c27b0;
  }
  
  #captureButton:hover {
    background-color: #7b1fa2;
  }
  
  .user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .timer {
    font-size: 24px;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
  }
  
  .error-container {
    color: #d32f2f;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    background-color: #f8d7da;
    display: none;
  }
  
  /* 시간 설정 관련 스타일 */
  .time-setup {
    margin: 15px 0;
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
  }
  
  .time-input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
  }
  
  .time-input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
  }
  
  #timeSetupButton {
    background-color: #ff9800;
    margin-left: 10px;
  }
  
  #timeSetupButton:hover {
    background-color: #f57c00;
  }
  
  .time-limit-display {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
    font-weight: bold;
  }
  
  #saveGoogleButton {
    background-color: #4285f4;
    display: none;
  }
  
  #saveGoogleButton:hover {
    background-color: #3367d6;
  }
  
  /* 버튼 비활성화 스타일 */
  #saveGoogleButton:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }
  
  /* 품질 설정 관련 스타일 */
  .quality-setup {
    margin: 15px 0;
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
  }
  
  .quality-selector {
    width: 200px;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
  }
  
  .quality-selector:focus {
    outline: none;
    border-color: #4285f4;
  }

  /* 메뉴 스타일 */
.menu-container {
    text-align: center;
    margin-bottom: 20px;
  }

  .main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-menu li {
    margin: 0 10px;
  }

  .main-menu li.menu-right {
    margin-left: auto;
  }

  .main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .main-menu a:hover, .main-menu a.active {
    background-color: #4285f4;
    color: white;
  }

  /* 메뉴 로그인 버튼 스타일 */
  .menu-login-btn {
    background-color: #4285f4;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
  }

  .menu-login-btn:hover {
    background-color: #3367d6;
  }

  .menu-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .menu-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
  }

  .menu-user-name {
    font-size: 14px;
    color: #333;
    font-weight: bold;
  }

  .menu-logout-btn {
    background-color: #db4437;
    color: white;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
  }

  .menu-logout-btn:hover {
    background-color: #c53929;
  }
  