﻿.custom-toast {
    min-width: 500px;
    border-radius: 12px;
    color: white;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 12px;
    border-left: 6px solid transparent;
}

.toast-body {
    padding: 16px 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-success {
    background: #198754;
    border-left-color: #0f5132;
}

.toast-warning {
    background: #ffc107;
    color: #000;
    border-left-color: #b38600;
}

.toast-danger {
    background: #dc3545;
    border-left-color: #842029;
}

.toast-progress {
    height: 4px;
    width: 100%;
    background: #ffffff; /* white background */
    opacity: 0.7;
    animation: toast-progress 5s linear;
}

@keyframes toast-progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}
