/* ===============================
   GLOBAL HELPERS
================================ */
.ccfp-hidden {
    display: none !important;
}

.table td,
.table th {
    vertical-align: middle;
}

/* ===============================
   ADMISSION CARD (LEFT)
================================ */
.ccfp-admission-card {
    background: linear-gradient(135deg, #8b5cf6, #22d3ee);
    border-radius: 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px;
}

/* Admission Heading */
.ccfp-admission-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

/* Admission Input */
.ccfp-admission-card input {
    width: 100%;
    max-width: 260px;
    text-align: center;

    background: #e5e5e5;
    border-radius: 12px;
    font-size: 18px;
    padding: 10px;
}

/* Fetch Button */
.ccfp-admission-card button {
    width: 100%;
    max-width: 260px;
    margin-top: 12px;
}

/* ===============================
   GRADIENT HEADERS
================================ */
.ccfp-gradient-header {
    background: linear-gradient(135deg, #8b5cf6, #22c55e);
    text-align: center;
    font-size: 18px;
}

/* ===============================
   STUDENT DETAILS
================================ */
#ccfp_student_section input {
    font-size: 15px;
}

/* ===============================
   FEES TABLE
================================ */
#ccfp_fee_section table {
    margin-bottom: 0;
}

#ccfp_fee_section th {
    font-weight: 700;
}

#ccfp_fee_section td {
    font-size: 15px;
}

/* ===============================
   PAY BUTTON
================================ */
#ccfp_pay_btn {
    min-width: 200px;
}

/* ===============================
   LOADER OVERLAY (FIXED)
================================ */
.ccfp-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;

    /* IMPORTANT: hidden by default */
    display: none;

    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ===============================
   ERROR BANNER
================================ */
#ccfp_error {
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    .ccfp-admission-card {
        margin-bottom: 25px;
    }

    .ccfp-gradient-header {
        font-size: 16px;
        padding: 10px;
    }

    .table th,
    .table td {
        font-size: 14px;
        padding: 8px;
    }

    #ccfp_pay_btn {
        width: 100%;
    }
}