/* Toast container fixed at top-center */
#toast-container {
    position: fixed !important;
    top: 20px !important;        
    left: 50% !important;        
    transform: translateX(-50%);
    right: auto !important;
    bottom: auto !important;
    text-align: center;
    z-index: 9999 !important;
}

/* Toast styling */
.toast {
    display: inline-block;
    background-color: #323232;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0.95;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Success toast */
.toast-success {
    background-color: #43a047 !important;
}

/* Error toast */
.toast-error {
    background-color: #e53935 !important;
}