﻿

.modalAlert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modalAlert-content {
    background: #fff;
    width: 90%;
    max-width: 520px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

.modalAlert-header {
    padding: 18px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modalAlert-header h3 {
        margin: 0;
        color: #193C36;
    }

.modalAlert-body {
    padding: 25px;
    text-align: center;
    font-size: 15.5px;
    line-height: 1.6;
}

.modalAlert-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

    .modalAlert-footer button {
        min-width: 120px;
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.2s;
    }

.btn-primary {
    background: #193C36;
    color: white;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.modalAlert-close {
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

    .modalAlert-close:hover {
        color: #f00;
    }
