/* General Body Styling */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
}

/* Header Styling */
.header {
  background-color: #002147;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 6px solid white;
}

.header-left img,
.header-right img {
  height: 60px;
}

.header-left, .header-right {
  width: 20%;
  text-align: center;
}

.header-center {
  flex: 1;
  text-align: center;
}

.college-name {
  font-size: 22px;
  font-weight: bold;
}

.tagline {
  font-size: 14px;
  font-style: italic;
  margin-top: 2px;
}

/* Title Box Below Header */
.exam-title {
  background-color: #003366;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

/* Main Content Box */
.box {
  max-width: 850px;
  margin: 30px auto;
  border: 3px double #002147;
  padding: 20px;
  background: #f9f9f9;
}

/* Radio Option Styling */
.radio-options {
  display: flex;
  gap: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  background: #f0f4ff;
  border: 2px solid #002147;
  padding: 15px;
}

/* Form Row Style */
.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-row label {
  width: 180px;
  font-weight: bold;
}

.form-row select {
  flex: 1;
  padding: 8px;
  font-size: 15px;
  border: 2px solid #002147;
}

/* Button Styling */
button {
  padding: 10px 20px;
  background-color: #f4c484;
  font-weight: bold;
  border: 2px solid #002147;
  cursor: pointer;
  font-size: 16px;
}

/* Table Styling */
table {
  margin-top: 30px;
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  border: 1px solid #002147;
  text-align: center;
}

th {
  background-color: #003366;
  color: white;
}

/* Status Classes */
.available {
  color: green;
  font-weight: bold;
}

.not-available {
  color: red;
  font-weight: bold;
}

/* Footer Style */
.footer {
  text-align: center;
  font-size: 12px;
  color: #444;
  padding: 20px;
}
