/* Customer Invoice Styles */
.southerncooler-invoice-status,
.southerncooler-payment-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.southerncooler-invoice-status.status-draft {
    background: #f0f0f0;
    color: #666;
}

.southerncooler-invoice-status.status-completed {
    background: #d4edda;
    color: #155724;
}

.southerncooler-payment-status.payment-unpaid {
    background: #f8d7da;
    color: #721c24;
}

.southerncooler-payment-status.payment-paid {
    background: #d4edda;
    color: #155724;
}

.southerncooler-modal {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.southerncooler-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.southerncooler-modal-content {
    position: relative;
    background: #fff;
    margin: 50px auto;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.southerncooler-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.southerncooler-modal-close:hover {
    color: #000;
}

@media (max-width: 768px) {
    .southerncooler-modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 20px;
    }
}