.debt-container {
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

.debt-details {
    margin-left: 5px;
}

.debt-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem; /* fixed */
}

.disabled-checkbox {
    opacity: 0.5;
    cursor: not-allowed;
}

.debt-checkbox i {
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.hidden-checkbox {
    display: none;
}

.hidden-checkbox:checked+i {
    color: #0376f2;
    content: '\f14a';
}

.d-flex {
    display: flex;
    align-items: center;
}

.checked-icon {
    color: #007bff;
}

.debt-text {
    color: #222
}

.debts-text-cols {
    display: flex;
}

.debts-valor {
    color: #777
}

.point-8-spacing {
    line-height: .8rem;
}

.warning-box {
    background-color: #fffebc;
    color: #716000;
    border: 1px solid #ECE81A;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.success-box {
    background-color: #d9fdd3;   /* light green */
    color: #1b5e20;              /* dark green text */
    border: 1px solid #66bb6a;   /* medium green border */
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.failed-box {
    background-color: #ffe0e0;   /* light red */
    color: #7f1d1d;              /* dark red text */
    border: 1px solid #e57373;   /* medium red border */
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.fale-conosco {
    color: #1f5eac;
    font-weight: bold;
}

.checkbox-text {
    width: 100%;
    margin-left: 0px;
    padding-left: 0px;
}

@media (max-width: 575px) {
    .checkbox-text {
        margin-left: 5px;
        padding-left: 0px;
    }
}

@media (max-width: 425px) {
    .checkbox-text {
        margin-left: 10px;
        padding-left: 0px;
    }
}

.cupom-box {
    display: flex;
    justify-content: flex-start;   /* aligns to the right */
    gap: 8px;                     /* space between input and button */
    margin: 8px 0 14px 0;         /* spacing around block */
}

.cupom-input {
    max-width: 50%;             /* smaller width, clean shape */
}

.cupom-btn {
    padding: 6px 17px;            /* smaller button size */
    font-size: 1rem;
}