#customToastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    width: min(380px, calc(100vw - 40px));
}

#customToastContainer .toast {
    min-width: 320px;
    max-width: 380px;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#customToastContainer .toast-header {
    border-bottom: 0;
    padding: 10px 14px;
}

#customToastContainer .toast-body {
    padding: 12px 14px;
    font-size: 14px;
}

.custom-toast-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-right: 8px;
}

.custom-toast-success .custom-toast-icon {
    background-color: #198754;
}

.custom-toast-error .custom-toast-icon {
    background-color: #dc3545;
}

.custom-toast-warning .custom-toast-icon {
    background-color: #ffc107;
    color: #212529;
}

.custom-toast-info .custom-toast-icon {
    background-color: #0dcaf0;
    color: #212529;
}

.custom-toast-success {
    border-left: 4px solid #198754 !important;
}

.custom-toast-error {
    border-left: 4px solid #dc3545 !important;
}

.custom-toast-warning {
    border-left: 4px solid #ffc107 !important;
}

.custom-toast-info {
    border-left: 4px solid #0dcaf0 !important;
}