.w-30 {
    width: 30%;
    align-content: center;
}

.w-70 {
    width: 70%;
}

.invoice-info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 18px 25px;
    margin-top: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,.06);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.info-label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 3px;
}

.info-value {
    font-size: 18px;
    font-weight: 600;
    color: #243b6b;
}

.divider {
    width: 1px;
    align-self: stretch;
    background: #e5e5e5;
}

.text-primary {
    color: #192F60 !important;
}

.bg-primary {
    background-color: #192F60 !important;
}

.invoice-modal {
    max-width: 1200px !important;
}
:root {
    --active: #2e3281;
    --active-inner: #fff;
    --focus: 2px rgba(137, 228, 123, .3);
    --border: #2e3281;
    --border-hover: #2e3281;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
}
.checkboxMessages {
    appearance: none; /* Remove default */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px; /* Size */
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 7px; /* Rounded corners */
    background: var(--background);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-in-out;
}

    /* Hover effect */
    .checkboxMessages:hover {
        border-color: var(--border-hover);
    }

    /* Focus outline */
    .checkboxMessages:focus {
        outline: none;
        box-shadow: 0 0 0 3px var(--focus);
    }

    /* Checked state */
    .checkboxMessages:checked {
        background: var(--active);
        border-color: var(--active);
    }

    /* Checkmark (custom ::after pseudo-element) */
    .checkboxMessages:checked::after {
        content: "";
        position: absolute;
        top: 4px;
        left: 8px;
        width: 6px;
        height: 12px;
        border: solid var(--active-inner);
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }