#custom-toast-container {
    position: fixed;
    top: 30px;
    left: 30px;
    right: auto;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.custom-toast {
    z-index: 9999;
    min-width: 220px;
    max-width: 320px;
    color: #fff;
    padding: 12px 18px 10px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    font-size: 1em;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: fadeIn 0.3s;
}
.custom-toast.success { background: #2ecc40; }
.custom-toast.error   { background: #e74c3c; }
.custom-toast.info    { background: #3498db; }
.custom-toast.warning { background: #f39c12; }
.custom-toast .toast-icon {
    font-size: 1.3em;
    margin-top: 1px;
}
.custom-toast .toast-content {
    flex: 1;
}
.custom-toast .toast-title {
    font-weight: bold;
    font-size: 1.05em;
    margin-bottom: 2px;
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px);}
    to   { opacity: 1; transform: translateY(0);}
}
.toast-success {
    background: #2ecc40;
    color: #fff;
}
.toast-error {
    background: #e74c3c;
    color: #fff;
}
.toast-info {
    background: #3498db;
    color: #fff;
}
.toast-warning {
    background: #f39c12;
    color: #fff;
}