.form-notification {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    animation: slideIn 0.3s ease-out;
}

.form-notification--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notification--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-notification.fade-out {
    animation: slideOut 0.3s ease-out forwards;
}

/* Form errors */
.form-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.inputs__element-text.error,
.inputs__element-number.error,
.form-select.error {
    border-color: #dc3545;
}

/* Loading state */
.form-sell.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* File preview */
.file-preview {
    margin-top: 15px;
}

.file-preview__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 8px;
}

.file-preview__size {
    color: #6c757d;
    font-size: 12px;
    margin-left: auto;
}

.file-preview__remove {
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

.file-preview__remove:hover {
    opacity: 0.8;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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