.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.custom-toast {
    background: #fff;
    border-radius: 10px;
    padding: 15px 25px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid #2563eb;
    position: relative;
    overflow: hidden;
}

.custom-toast.show {
    transform: translateX(0);
}

.custom-toast .toast-icon {
    font-size: 20px;
    margin-right: 15px;
}

.custom-toast .toast-content {
    flex-grow: 1;
}

.custom-toast .toast-title {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 14px;
}

.custom-toast .toast-message {
    font-size: 13px;
    color: #666;
}

.custom-toast .toast-close {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    margin-left: 10px;
}

.custom-toast .toast-close:hover {
    opacity: 1;
}

.custom-toast .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(0,0,0,0.05);
}

.custom-toast .toast-progress-bar {
    height: 100%;
    width: 100%;
    background: #2563eb;
}

/* Types */
.custom-toast.success { border-left-color: #10b981; }
.custom-toast.success .toast-icon { color: #10b981; }
.custom-toast.success .toast-progress-bar { background: #10b981; }

.custom-toast.error { border-left-color: #ef4444; }
.custom-toast.error .toast-icon { color: #ef4444; }
.custom-toast.error .toast-progress-bar { background: #ef4444; }

.custom-toast.warning { border-left-color: #f59e0b; }
.custom-toast.warning .toast-icon { color: #f59e0b; }
.custom-toast.warning .toast-progress-bar { background: #f59e0b; }

.custom-toast.info { border-left-color: #3b82f6; }
.custom-toast.info .toast-icon { color: #3b82f6; }
.custom-toast.info .toast-progress-bar { background: #3b82f6; }
