/* Toast notifications styling */
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    max-width: 300px;
    font-size: 14px;
    line-height: 1.4;
}

.custom-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.custom-toast.toast-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-left: 4px solid #1e7e34;
}

.custom-toast.toast-error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-left: 4px solid #bd2130;
}

.custom-toast.toast-info {
    background: linear-gradient(135deg, #c41e3a 0%, #a01829 100%);
    border-left: 4px solid #8b1523;
}

@media (max-width: 768px) {
    .custom-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .custom-toast.show {
        transform: translateY(0);
    }
}
