/* Custom Toast Notifications */
.toast-container {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    width: 90%;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    padding: 16px 20px;
    margin-bottom: 12px;
    font-weight: 800;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

@keyframes toastSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    to {
        transform: translateY(-100px);
        opacity: 0;
    }
}

.toast.toast-out {
    animation: toastSlideOut 0.3s ease-in forwards;
}

.toast-success {
    background: linear-gradient(135deg, #86EFAC 0%, #4ADE80 100%);
}

.toast-error {
    background: linear-gradient(135deg, #FCA5A5 0%, #F87171 100%);
}

.toast-warning {
    background: linear-gradient(135deg, #FDE68A 0%, #FCD34D 100%);
}

.toast-info {
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 100%);
}

.toast-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 14px;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #000;
    animation: toastProgress 3s linear forwards;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}
