.gep-auth-wrap,
.gep-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.gep-card {
  background: #ffffff;
  border: 1px solid #d3deef;
  border-top: 4px solid #1c4e93;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(20, 54, 107, 0.07);
}

.gep-card h3,
.gep-card h2 {
  margin-top: 0;
  color: #153d72;
}

.gep-card input,
.gep-card select,
.gep-card textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #bac9df;
  border-radius: 6px;
}

.gep-btn,
.gep-card button {
  display: inline-block;
  background: #1c4e93;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  text-decoration: none;
  cursor: pointer;
}

.gep-exam-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gep-exam-list li {
  display: grid;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed #d5dceb;
}

.gep-table {
  width: 100%;
  border-collapse: collapse;
}

.gep-table th,
.gep-table td {
  border: 1px solid #d6dfef;
  padding: 8px;
  text-align: left;
  font-size: 14px;
}

.gep-exam-runner {
  position: relative;
  background: #f7faff;
  border: 1px solid #d7e2f4;
  border-radius: 10px;
  padding: 16px;
}

.gep-exam-runner,
.gep-exam-runner * {
  user-select: none;
}

.gep-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 8px;
  z-index: 5;
  background: #f7faff;
  padding-bottom: 8px;
}

.gep-timer {
  font-weight: 700;
  color: #b01826;
}

.gep-question-list {
  margin: 12px 0;
  padding-left: 20px;
}

.gep-question-card {
  background: #fff;
  border: 1px solid #d6dfef;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
}

.gep-options {
  display: grid;
  gap: 8px;
}

.gep-options label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gep-options input {
  width: auto;
  margin-top: 2px;
}

.gep-watermark {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  font-size: 24px;
  color: #153d72;
  display: grid;
  place-items: center;
  transform: rotate(-20deg);
}

@media (max-width: 767px) {
  .gep-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
