.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.modal-window {
    position: relative;
    width: 1000px;
    margin: 80px auto;
    background: white;
    border-radius: 0px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content {
    padding: 20px;
}

#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
}

.toast {
    background: var(--color-bg);
    color: var(--color-black);
    padding: 12px 16px;
    margin-bottom: 10px;
    font-size: 14px;
    animation: toastIn .5s ease;
}

.toast.success {
    background: var(--color-green);
}

.toast.error {
    background: var(--color-danger);
    color: var(--color-white);
}

@keyframes toastIn {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
