body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
}

/* Sidebar styles */
.sidebar {
  background-color: #343a40;
  padding: 30px 20px;
  color: #fff;
}

.sidebar h4 {
  color: #fff;
}

.nav-btn {
  background: none;
  color: #ced4da;
  text-align: left;
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 10px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-btn:hover {
  background-color: #495057;
  color: #fff;
}

/* Main content area */
.main-content {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.main-content h3 {
  color: #343a40;
  margin-bottom: 50px;
}

.table th {
  background-color: #343a40;
  color: white;
  text-align: center;
}

.table td {
  text-align: center;
}

body {
      background-color: #f7f7f7;
    }
    .form-wrapper {
      background: #fff;
      border-radius: 12px;
      padding: 50px 40px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      min-height: 750px; /* Make the form box taller */
    }
    .form-title {
      font-size: 26px;
      font-weight: 700;
    }
    .form-input input,
    .form-input textarea,
    .form-control {
      border-radius: 10px;
      height: 60px;
      font-size: 1.1rem;
      padding: 0 20px;
    }
    .form-input textarea {
      height: 150px;
      padding-top: 15px;
    }
    .btn-primary {
      height: 60px;
      font-size: 1.1rem;
    }
     .success-message {
      color: green;
      background-color: #eaffea;
      padding: 10px;
      border: 1px solid green;
      margin-bottom: 15px;
      display: none;
    }
 
/* styles.css */

/* Custom styles for Career Applications Report */

body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
}

h2 {
  font-weight: 700;
  color: #343a40;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* Search form styling */
form.input-group {
  max-width: 500px;
  margin: 0 auto 2rem auto;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  border-radius: 0.375rem;
  overflow: hidden;
  background-color: #fff;
}

form.input-group input.form-control {
  border: none;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: box-shadow 0.3s ease;
}

form.input-group input.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px #0d6efd88;
}

form.input-group button.btn-primary {
  background-color: #0d6efd;
  border: none;
  font-weight: 600;
  padding: 0 1.5rem;
  transition: background-color 0.3s ease;
}

form.input-group button.btn-primary:hover {
  background-color: #0b5ed7;
}

/* Table styling */
table.table {
  background-color: #fff;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
}

.table thead.table-dark {
  background-color: #343a40;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.table tbody tr:hover {
  background-color: #f1f3f5;
  transition: background-color 0.3s ease;
}

.table td, .table th {
  vertical-align: middle;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #495057;
}

/* Links for resume download */
table a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
}

table a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  h2 {
    font-size: 1.5rem;
  }

  form.input-group {
    max-width: 100%;
  }

  .table thead.table-dark {
    font-size: 0.8rem;
  }

  .table td, .table th {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }
}
  .quiz-option {
      padding: 12px 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .quiz-option:hover {
      background-color: #f3f6ff;
    }

    .quiz-option.selected {
      background-color: #007bff;
      color: white;
      border-color: #007bff;
    }

    .summary-box {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
      margin-top: 30px;
    }
     .error-msg {
         color: red;
         font-size: 14px;
         display: none;
      }
      .sidebar {
         background: #343a40;
         color: #fff;
         padding: 20px;
      }
      .sidebar h4 {
         color: #fff;
      }
      .nav-btn {
         margin-bottom: 10px;
         background: #495057;
         color: #fff;
         border: none;
         padding: 10px;
         text-align: left;
         width: 100%;
         border-radius: 5px;
      }
      .nav-btn:hover {
         background: #17a2b8;
      }