#toast-container > .toast {
    background-color: #fff !important;
    color: #000 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #00e676; /* xanh lá */
    padding: 12px 16px;
    min-width: 320px;
    max-width: 400px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

#toast-container > .toast:before {
    color: white;
    background-color: #00e676;
    border-radius: 50%;
    padding: 4px 7px;
    font-size: 12px;
    margin-right: 12px;
    display: inline-block;
}

#toast-container > .toast-success {
    border-left-color: #00e676;
}

#toast-container > .toast .toast-title {
    font-weight: bold;
    margin-right: 5px;
}

#toast-container > .toast .toast-message {
    color: #666;
    font-size: 14px;
}

#toast-container > .toast .toast-close-button {
    position: absolute;
    top: 6px;
    right: 10px;
    color: #999;
    font-size: 18px;
}
#toast-container > .toast .toast-close-button:hover {
    color: #333;
}