.amort-card {
    max-width: 720px;
    margin: 30px auto;
    padding: 25px;
    background: linear-gradient(135deg, #e8f3ff, #ffffff);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.amort-card h1 {
    text-align: center;
    margin-bottom: 8px;
}

.amort-card p {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
}

.amort-card label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.amort-card input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.amort-card button {
    width: 100%;
    margin-top: 22px;
    padding: 14px;
    background: #0077ff;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}

.amort-card button:hover {
    background: #005edc;
}

/* ===============================
   SUMMARY BOX
================================ */

.summary-box {
    margin-top: 20px;
    background: #f0f9ff;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.6;
}

/* ===============================
   TABLE WRAPPER
================================ */

#schedule {
    margin-top: 20px;
    overflow-x: auto;
}

/* ===============================
   DESKTOP TABLE
================================ */

.amort-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 14px;
}

.amort-table th,
.amort-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.amort-table th {
    background: #0077ff;
    color: #ffffff;
    font-weight: 600;
}

/* ===============================
   MOBILE RESPONSIVE TABLE
================================ */

@media (max-width: 600px) {

    .amort-table,
    .amort-table thead,
    .amort-table tbody,
    .amort-table th,
    .amort-table td,
    .amort-table tr {
        display: block;
        width: 100%;
    }

    .amort-table thead {
        display: none;
    }

    .amort-table tr {
        background: #ffffff;
        margin-bottom: 14px;
        padding: 12px;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .amort-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px 10px;
        border: none;
        font-size: 14px;
    }

    .amort-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #333;
    }
}