/* Custom Toast Styles */
#toast-container > div {
    padding: 15px 15px 15px 50px !important;
    opacity: 1 !important;
}

#toast-container > .toast-success,
#toast-container > .toast-error,
#toast-container > .toast-info,
#toast-container > .toast-warning {
    width: 400px !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 0.8rem !important;
    border-radius: 0.5rem !important;
    background-color: #ffffff !important;
    background-position: 15px center !important;
    background-repeat: no-repeat !important;
    background-size: 20px !important;
    border-left: 4px solid !important;
}

/* Success - White bg, Green icon & border */
#toast-container > .toast-success {
    color: #065f46 !important;
    border-left-color: #10b981 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") !important;
}

/* Error - White bg, Red icon & border */
#toast-container > .toast-error {
    color: #991b1b !important;
    border-left-color: #ef4444 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E") !important;
}

/* Info - White bg, Blue icon & border */
#toast-container > .toast-info {
    color: #1e40af !important;
    border-left-color: #3b82f6 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233b82f6'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E") !important;
}

/* Warning - White bg, Yellow/Orange icon & border */
#toast-container > .toast-warning {
    color: #92400e !important;
    border-left-color: #f59e0b !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E") !important;
}

#toast-container > .toast {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

#toast-container > .toast > .toast-title {
    font-weight: 600 !important;
}

#toast-container > .toast-success > .toast-title {
    color: #065f46 !important;
}

#toast-container > .toast-error > .toast-title {
    color: #991b1b !important;
}

#toast-container > .toast-info > .toast-title {
    color: #1e40af !important;
}

#toast-container > .toast-warning > .toast-title {
    color: #92400e !important;
}
