.cgpa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.cgpa-modal {
  width: 100%;
  max-width: 760px;
  background: #052a65;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(2,6,23,0.3);
  transform-origin: center;
  animation: cgpa-zoom .12s ease-out;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}
a.get-counselling-modal {
    background: #052a65 !important;
    color: #fff !important;
    border: none;
    padding: 12px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-decoration: none;
}
@keyframes cgpa-zoom { from { transform: scale(.98); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.cgpa-modal header { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
.cgpa-modal h2 { margin:0; font-size:23px; color: #fff; }
.cgpa-close {
    background: transparent !important;
    border: none;
    font-size: 26px !important;
    cursor: pointer;
    padding: 0px !important;
    border-radius: 8px !important;
}
.cgpa-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:10px; }
.cgpa-modal label{ display:block; font-size:15px; margin-bottom:6px; color:#fff; }
.cgpa-modal select, .cgpa-modal input[type="number"]{
  width:100%; padding:9px 10px; border-radius:8px; border:1px solid rgba(15,23,42,0.08); font-size:15px;
}
.cgpa-row { display:flex; gap:8px; align-items:center; }
.cgpa-btn {
    background: #fff !important;
    color: #052a65 !important;
    border: none;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    box-shadow: 2px 2px 1px 2px #c6c6c6;
}

.cgpa-results { display:flex; gap:10px; justify-content:space-between; padding:12px; border-radius:10px; background:#fff; margin-top:10px; align-items:center; }
.cgpa-results .col { flex:1; min-width:0; }
.cgpa-big { font-size: 18px; font-weight: 700; color: #052a65; }
.cgpa-muted { color:#6b7280; font-size:13px; }
.cgpa-note { margin-top:10px; font-size:13px; color:#c3c3c3; }
@media (max-width:640px){ .cgpa-grid{ grid-template-columns:1fr } .cgpa-results{ flex-direction:column; align-items:flex-start } }