/* Custom Toast Notification Styles */
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    z-index: 99999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    border-left: 4px solid #000;
}

.custom-toast-show {
    transform: translateX(0);
    opacity: 1;
}

.custom-toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.custom-toast-message {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

/* Success Toast */
.custom-toast-success {
    border-left-color: #000;
}

.custom-toast-success .custom-toast-icon {
    background-color: #000;
    color: #fff;
}

/* Error Toast */
.custom-toast-error {
    border-left-color: #333;
}

.custom-toast-error .custom-toast-icon {
    background-color: #333;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

