body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #f5f5f5;
}

#toast-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 280px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #4caf50;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0s linear;
}

.toast-icon {
    width: 24px;
    height: 24px;
}

.toast-title {
    font-weight: bold;
}

.toast.success .progress-bar {
    background: #4caf50;
}

.toast.error .progress-bar {
    background: #f44336;
}

.toast.warning .progress-bar {
    background: #ff9800;
}

.toast.info .progress-bar {
    background: #2196f3;
}

.toast.question .progress-bar {
    background: #9c27b0;
}
