﻿.slider-dropzone {
}

.slider-modal-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.slider-modal-item:hover .slider-modal-item-overlay {
    opacity: 1;
}

.slider-modal-item-buttons {
    display: flex;
    gap: 0.5rem;
    z-index: 2000;
    position: absolute;
    top: 750px;
}

.slider-modal-item-button {
    background-color: white;
    color: var(--gray-800);
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: IRANSans !important;
    z-index: 2000;
}

    .slider-modal-item-button:hover {
        background-color: var(--gray-100);
    }

    .slider-modal-item-button.edit {
        color: var(--primary-color);
    }

    .slider-modal-item-button.remove {
        color: var(--danger-color);
    }
