/* custom-alert.css */

.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 250px;
    padding: 15px 20px;
    z-index: 9999;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 16px;
    opacity: 0.95;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-alert-success { background-color: #28a745; }
.custom-alert-danger, .alert-error { background-color: #dc3545; }
.custom-alert-warning { background-color: #ffc107; color: #212529; }
.custom-alert-info { background-color: #17a2b8; }

.custom-alert .close-btn {
    margin-left: 15px;
    cursor: pointer;
    font-weight: bold;
}
