/* ==================== LIGHTBOX NAVIGATION ==================== */

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(197, 161, 103, 0.9);
    color: var(--primary-dark);
    border: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Mobil eszközökön kisebb gombok */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* ==================== ADMIN DRAG & DROP ==================== */

.admin-item {
    transition: all 0.3s ease;
}

.admin-item.dragging {
    opacity: 0.5 !important;
    transform: scale(0.98);
}

.admin-item.drag-over {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(197, 161, 103, 0.3);
    transform: scale(1.02);
}

.drag-handle {
    cursor: move;
    user-select: none;
}

.drag-handle:hover {
    background: rgba(197, 161, 103, 0.1) !important;
}

/* ==================== ALERT ANIMATIONS ==================== */

.alert {
    animation: slideInRight 0.3s ease;
    transition: opacity 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== LIGHTBOX INFO IMPROVEMENTS ==================== */

.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 31, 26, 0.98), rgba(10, 31, 26, 0.8));
    padding: 2rem;
    backdrop-filter: blur(10px);
}

/* ==================== RESPONSIVE IMPROVEMENTS ==================== */

@media (max-width: 768px) {
    .lightbox-info {
        padding: 1.5rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.25rem !important;
    }
    
    .lightbox-info p {
        font-size: 0.875rem !important;
    }
}
