body {
    background-color: #f5f5dc; /* Beige background */
  }
  .container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card {
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fffaf0, #f0ebe1); /* Soft warm pastels */
    color: #4a4a4a;
    padding: 20px;
    width: 100%;
    max-width: 600px;
  }
  .form-select,
  .form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #f9f4ef; /* Light sandy pastel */
  }
  .form-select:focus,
  .form-control:focus {
    background-color: #f0ebe1; /* Soft pastel when selected */
    border-color: #d8a48f; /* Match with button color */
    box-shadow: none;
  }
  .btn-primary {
    background-color: #d8a48f; /* Blush pastel */
    border: none;
    border-radius: 10px;
    color: #ffffff;
    --bs-btn-active-bg: #c98b77;
  }
  .btn-primary:hover {
    background-color: #e2b6a1; /* Softer pastel for hover */
  }
  .btn-primary:active,
  .btn-primary:focus {
    background-color: #c98b77; /* Consistent pastel for active/focus */
    border-color: #c98b77;
    box-shadow: none;
  }
  #timerDisplay {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #sessionInfo {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .settings-label {
    font-weight: bold;
  }
  #qrCodeContainer {
    margin-top: 20px;
  }
  #result {
    font-size: 1.5rem;
    font-weight: bold;
    color: #a1887f;
    margin-top: 15px;
  }
  .team-card {
    margin-top: 20px;
  }
  .team-card h3 {
    color: #a1887f;
  }
      /* Override default tab link color */
      .nav-tabs .nav-link {
        color: #4a4a4a;
      }
      .nav-tabs .nav-link.active {
        color: #4a4a4a;
      }