/* Toast Messages */
.toast-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 250px;
    text-align: center;
    animation: slideDown 0.3s ease-out;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-right: 4px solid #22c55e;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.toast-message.alert-danger {
    border-right-color: #ef4444;
}

.toast-message i {
    margin-left: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}