.alert-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Bảng thông báo chính */
.alert-box {
    background: linear-gradient(#f8f8f8, #e6e6e6);
    color: #333;
    padding: 40px 40px;
    border: 2px solid #333;
    border-radius: 2px;
    min-width: 250px;
    max-width: 80%;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
}

/* Hiển thị khi có class show */
.alert-overlay.show {
    display: flex;
}

/* Các biến thể màu sắc đơn giản cho chữ */
.alert-box.error { border-color: #cc0000; color: #cc0000; }
.alert-box.success { border-color: #28a745; color: #28a745; }