/* Toast Notification Styles */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 90%;
    text-align: center;
}

.toast.show {
    opacity: 1;
    bottom: 120px;
}

.toast.success {
    background: rgba(76, 175, 80, 0.9);
}

.toast.error {
    background: rgba(244, 67, 54, 0.9);
}

.toast.warning {
    background: rgba(255, 152, 0, 0.9);
}

.toast.info {
    background: rgba(33, 150, 243, 0.9);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .toast {
        bottom: 80px;
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .toast.show {
        bottom: 100px;
    }
}

/* Desktop adjustments */
@media (min-width: 992px) {
    .toast {
        bottom: 30px;
    }
    
    .toast.show {
        bottom: 50px;
    }
}