.financial-module {

    padding: 24px;

}

.financial-header {

    margin-bottom: 28px;

}

.financial-header h2 {

    font-size: 32px;

    margin-bottom: 6px;

}

.financial-header p {

    color: #64748b;

}

.financial-summary-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 24px;

}

.financial-card {

    background: #ffffff;

    border-radius: 20px;

    padding: 24px;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.06);

}

.financial-card span {

    display: block;

    color: #64748b;

    margin-bottom: 10px;

}

.financial-card strong {

    font-size: 34px;

    color: #0f172a;

}

.financial-progress-wrapper {

    height: 20px;

    background: #e2e8f0;

    border-radius: 999px;

    overflow: hidden;

    margin-bottom: 32px;

}

.financial-progress-bar {

    height: 100%;

    width: 0%;

    background: linear-gradient(
        90deg,
        #22c55e,
        #16a34a
    );

    transition: width .4s ease;

}

.financial-payments-section {

    background: #ffffff;

    border-radius: 20px;

    padding: 24px;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.06);

}

.financial-section-header {

    margin-bottom: 22px;

}

.financial-payment-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 0;

    border-bottom:
        1px solid #e2e8f0;

}

.financial-payment-info strong {

    display: block;

    margin-bottom: 4px;

}

.financial-payment-info span {

    color: #64748b;

    font-size: 14px;

}

.financial-payment-amount {

    font-size: 20px;

    font-weight: 700;

    color: #16a34a;

}

.financial-empty {

    color: #64748b;

}


/* ==========================================
   REGISTER PAYMENT
========================================== */

.financial-register-payment {

    background: #ffffff;

    border-radius: 20px;

    padding: 24px;

    margin-bottom: 28px;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.06);

}

.financial-payment-form {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;

}

.financial-payment-form input,
.financial-payment-form select,
.financial-payment-form textarea {

    padding: 14px;

    border-radius: 14px;

    border: 1px solid #dbe1ea;

}

.financial-payment-form textarea {

    grid-column: span 2;

    min-height: 90px;

}

.financial-payment-form button {

    grid-column: span 2;

    background: #16a34a;

    color: white;

    border: none;

    border-radius: 16px;

    padding: 16px;

    font-weight: 700;

    cursor: pointer;

}