/* ==========================================================================
   MODERN LIGHT REGISTRATION FEE TABLE DESIGN (FINAL)
   ========================================================================== */
   .fee-main-container {
    flex: 1;
    padding-top: 140px; 
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}

.fee-wrapper {
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Tajuk Utama */
.fee-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    color: #0f172a; 
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 24px;
}

.title-icon {
    color: #2563eb; 
    font-size: 1.8rem;
}

/* White Card Container */
.fee-card {
    background: #ffffff;
    border: none;
    border-radius: 24px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px; 
    overflow: hidden;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Elegant & Structured Table Design */
.fee-table {
    width: 100%;
    border-collapse: collapse; /* Cantumkan garisan jadual supaya sekata */
    font-size: 0.95rem;
}

/* Tetapan Garisan Jadual (Hitam & Sama Ketebalan) */
.fee-table th, 
.fee-table td {
    border: 1px solid #1e293b; /* Garisan kotak yang seragam */
    padding: 20px 24px;
    vertical-align: middle;
}

/* Tetapan Header */
.fee-table th {
    background-color: #baddec; /* Biru cair */
    color: #000000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    text-align: center;
}

/* Header Kolum Pertama ke Kiri */
.fee-table th:first-child {
    text-align: left;
}

/* Ikon di dalam Header */
.header-icon {
    color: #0f172a; 
    margin-right: 6px;
    font-size: 1.1rem;
}

/* Susunan Kolum Harga ke Tengah */
.fee-table td {
    text-align: center;
    color: #0f172a;
    font-weight: 500;
    font-size: 1.05rem; 
}

/* Kategori (Kiri & Bold) */
.fee-table td.category-col {
    text-align: left;
    font-weight: 800;
    font-size: 1rem;
    color: #000000;
}

/* Ikon Kategori & Warna Custom */
.category-icon {
    font-size: 1.3rem;
    margin-right: 12px; /* Jarakkan ikon dengan teks guna margin */
    vertical-align: middle;
}

.text-blue { color: #2563eb; } 
.text-pink { color: #db2777; }

/* Nota Tambahan di Bawah */
.fee-note {
    text-align: center;
    font-size: 0.9rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.fee-note i {
    color: #2563eb;
    font-size: 1.1rem;
}

/* ==========================================================================
   KAD ARAHAN PEMBAYARAN (PAYMENT INSTRUCTION)
   ========================================================================== */
   .payment-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: center;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 24px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #f8fafc; /* Latar belakang kelabu sangat lembut */
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.payment-row:hover {
    border-color: #baddec; /* Serlahkan border apabila di-hover */
}

.payment-label {
    font-weight: 700;
    color: black;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.payment-value {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
    text-align: right;
}

/* Reka Bentuk Teks yang Boleh Disalin (Copyable Text) */
.highlight-copy {
    background-color: #baddec; /* Biru cair sedondon dengan jadual */
    padding: 6px 14px;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    color: #000000;
    cursor: text;
    user-select: all;
    -webkit-user-select: all;
    transition: background-color 0.2s ease;
}

.highlight-copy:hover {
    background-color: #7bc5ea; /* Biru sky-blue apabila di-hover */
}

/* Responsiveness untuk Skrin Telefon */
@media (max-width: 768px) {
    .payment-title {
        font-size: 1.2rem;
    }
    
    .payment-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 16px;
    }
    
    .payment-value {
        text-align: left;
        width: 100%;
        word-break: break-word;
    }
    
    .highlight-copy {
        display: inline-block;
        box-sizing: border-box;
        font-size: 1rem;
    }
}

/* Responsiveness untuk Skrin Telefon */
@media (max-width: 768px) {
    .fee-main-container { padding-top: 110px; padding-bottom: 50px; }
    .fee-title { font-size: 1.3rem; }
    .title-icon { font-size: 1.4rem; }
    .fee-card { padding: 16px; }
    .fee-table th, .fee-table td { padding: 14px 16px; font-size: 0.85rem; }
    .fee-table td.category-col { font-size: 0.9rem; }
    .header-icon { font-size: 0.9rem; }
    .category-icon { font-size: 1.1rem; margin-right: 8px; }
}