/* =============================================
   MY CREATIONS FOLDER FEATURE STYLES
   ============================================= */

/* 🔹 保留原有版面配置 - 不更動原始設計 */
.creations-container {
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto !important;
    width: 100%;
    display: block !important;
    float: none !important;
    text-align: center !important;
}

.creations-header {
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
    display: block !important;
}

.creations-header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}

/* 新增資料夾按鈕在右上角 */
.btn-create-folder {
    position: absolute;
    right: 0;
    top: 0;
}

.creations-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 auto;
    display: block;
    text-align: center;
    width: 100%;
}

.creations-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
}

.btn-create-folder {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* 🔹 資料夾項目樣式 - 整合原生導覽列風格 */
.folder-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
}

.folder-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

.folder-item:hover .folder-actions {
    opacity: 1;
}

.folder-actions {
    margin-left: auto;
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.folder-action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    color: #6b7280;
    transition: all 0.2s ease;
}

.folder-action-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #374151;
}

.folder-action-btn[data-action="delete"]:hover {
    color: #ef4444;
}

.folder-item.active {
    background: var(--primary-color-light);
    color: var(--primary-color);
}

.folder-sidebar-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.folder-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.folder-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    background: transparent;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.folder-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.2s ease;
    border-radius: 0 4px 4px 0;
}

.folder-item:hover {
    background: var(--primary-color-light);
    transform: translateX(4px);
}

.folder-item.active {
    background: var(--primary-color-light);
    border-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.folder-item.active::before {
    transform: scaleY(1);
}

.folder-item.dragging {
    opacity: 0.5;
    background: var(--primary-color-light);
}

.folder-item.drag-over {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.folder-item .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary-color);
}

.folder-item.active .material-symbols-outlined,
.folder-item.drag-over .material-symbols-outlined {
    color: white;
}

.folder-name {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    padding-right: 18px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.folder-item.drag-over .folder-name {
    color: white;
}

.folder-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    background: var(--surface-color);
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
}

.folder-item.active .folder-count {
    background: white;
    color: var(--primary-color);
}

.folder-item.drag-over .folder-count {
    background: white;
    color: var(--primary-color);
}

.folder-sidebar-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--surface-color);
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

.folder-sidebar-hint .material-symbols-outlined {
    font-size: 18px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.btn-close-modal {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-close-modal:hover {
    background: var(--surface-color);
}

.btn-close-modal .material-symbols-outlined {
    font-size: 24px;
    color: var(--text-muted);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Button Styles */
.btn-danger {
    background: #ef4444;
    color: white;
    border: 1px solid #ef4444;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast .material-symbols-outlined {
    font-size: 24px;
    color: #10b981;
}

.toast.error .material-symbols-outlined {
    color: #ef4444;
}

.toast-message {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Creations Content */
.creations-content {
    width: 100%;
    display: block;
}

.creations-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: transparent;
    border: none;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.creations-message.d-none {
    display: none !important;
}

.empty-icon {
    font-size: 4rem !important;
    margin-bottom: 1rem;
}

.creations-message .btn-primary {
    margin-top: 1.5rem !important;
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Grid Layout */
.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* Creation Card */
.creation-card {
    background: var(--surface-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.creation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* File Checkbox */
.file-checkbox {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.file-checkbox:hover {
    border-color: #4a90e2;
    transform: scale(1.05);
}

.file-checkbox .material-symbols-outlined {
    font-size: 18px;
    color: white;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Selected State */
.creation-card.selected {
    border: 1.5px solid #4a90e2;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

.creation-card.selected .file-checkbox {
    background: #4a90e2;
    border-color: #4a90e2;
}

.creation-card.selected .file-checkbox .material-symbols-outlined {
    opacity: 1;
}

.creation-card[draggable="true"] {
    cursor: grab;
}

.creation-card:active {
    cursor: grabbing;
}

.creation-card.dragging {
    opacity: 0.4;
    transform: scale(0.95);
}

.creation-media {
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creation-media img,
.creation-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* iOS Safari long-press support */
    -webkit-touch-callout: default;
    -webkit-user-select: text;
    pointer-events: auto;
    touch-action: manipulation;
}

/* 3D Model Placeholder (for text-to-3D without reference image) */
.creation-3d-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-muted);
}

.creation-3d-placeholder p {
    margin: 0;
    font-size: 0.875rem;
}

/* Video Preview - Click to Play */
.video-preview-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-preview-container .video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    /* iOS Safari long-press support */
    -webkit-touch-callout: default;
    -webkit-user-select: text;
    touch-action: manipulation;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.2s ease, background 0.2s ease;
    z-index: 5;
}

.video-preview-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-preview-container.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-button .material-symbols-outlined {
    font-size: 32px;
    color: #333;
    margin-left: 4px;
}

.video-preview-container:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.creation-type-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: monospace;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 4px;
}

.creation-details {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.creation-prompt {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.creation-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.creation-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    align-items: stretch;
}

.creation-actions .btn-download,
.creation-actions .btn-delete {
    flex: 1;
    padding: 0 12px !important;
    height: 36px !important;
    min-height: unset !important;
    max-height: 36px !important;
    font-size: 0.9rem;
    font-family: inherit;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box !important;
    line-height: 1 !important;
    white-space: nowrap;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.creation-actions .btn-download {
    background: #f8fafc;
    color: #333333;
    border: 1px solid #d1d5db;
}

.creation-actions .btn-download:hover {
    background: #f0f4f8;
    color: #333333;
}

.creation-actions .btn-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.creation-actions .btn-delete:hover {
    background: #ef4444;
    color: white;
}

/* =============================================
   📱 MOBILE RESPONSIVE OPTIMIZATIONS
   ============================================= */

/* Tablet Size */
@media (max-width: 1024px) {
    .creations-header-top {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-create-folder {
        position: static;
        margin-top: 0.5rem;
        width: auto;
    }
}

/* Mobile Size */
@media (max-width: 768px) {
    /* Container */
    .creations-container {
        padding: 1rem 0.75rem;
    }

    /* Header */
    .creations-header h1 {
        font-size: 1.5rem;
    }
    
    .creations-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Create Folder Button */
    .btn-create-folder {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        min-width: 200px;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Folder List Horizontal Scroll */
    .folder-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .folder-list::-webkit-scrollbar {
        display: none;
    }
    
    .folder-item {
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        min-width: fit-content;
        border-radius: 20px;
    }

    .folder-item::before {
        display: none;
    }
    
    .folder-item:hover,
    .folder-item.active {
        transform: none;
    }

    /* Grid Layout */
    .creations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Creation Card */
    .creation-card {
        margin: 0;
    }

    /* Buttons Touch Area */
    .creation-actions .btn-download,
    .creation-actions .btn-delete {
        min-height: 48px !important;
        height: 48px !important;
        font-size: 1rem;
        padding: 0 16px !important;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        border-radius: 16px;
        margin: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer button {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
    }

    /* Toast */
    .toast {
        bottom: 100px;
        right: 1rem;
        left: 1rem;
        width: auto;
    }

    /* Empty State */
    .creations-message {
        min-height: 250px;
        padding: 1rem;
    }
    
    .empty-icon {
        font-size: 3rem !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .creations-header h1 {
        font-size: 1.25rem;
    }
    
    .creations-subtitle {
        font-size: 0.9rem;
    }
    
    .folder-item {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
    
    /* Selection Bar Mobile Optimizations */
    .selection-bar {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .selection-info {
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .selection-info .material-symbols-outlined {
        font-size: 20px;
    }
    
    .selection-info span:last-child {
        font-size: 1rem;
    }
    
    .selection-actions {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .selection-actions button {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        gap: 0.375rem;
    }
    
    .selection-actions button .material-symbols-outlined {
        font-size: 18px;
    }
    
    /* Create Folder Button */
    .btn-create-folder {
        width: 100%;
        min-width: unset;
        padding: 0.75rem 1rem;
    }
}

/* =============================================
   🔧 FOLDER ACTION BUTTONS - FIXED PRIORITY
   ============================================= */
.folder-item {
    position: relative !important;
}

.folder-actions {
    margin-left: auto !important;
    display: flex !important;
    gap: 4px !important;
    opacity: 0 !important;
    transition: opacity 0.15s ease !important;
    z-index: 100 !important;
    flex-shrink: 0 !important;
    position: absolute !important;
    right: 0.75rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: inherit !important;
    padding: 2px 4px !important;
    border-radius: 6px !important;
}

.folder-item:hover .folder-actions {
    opacity: 1 !important;
}

.folder-item:hover .folder-count {
    opacity: 0 !important;
}

.folder-action-btn {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 4px !important;
    border-radius: 4px !important;
    color: #6b7280 !important;
    transition: all 0.2s ease !important;
    min-width: 22px !important;
    min-height: 22px !important;
    width: 22px !important;
    height: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 200 !important;
    flex-shrink: 0 !important;
}

.folder-action-btn .material-symbols-outlined {
    font-size: 16px !important;
}

.folder-action-btn:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    color: #374151 !important;
}

.folder-action-btn[data-action="delete"]:hover {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

/* Mobile Menu Folder Support */
.mobile-menu-section {
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-section-title {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-folder-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 0.5rem;
}

.mobile-folder-list .folder-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    box-sizing: border-box;
}

.mobile-folder-list .folder-item.active {
    transform: none;
    border-color: var(--primary-color);
    background: var(--primary-color-light);
}

/* Selection Bar */
.selection-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    position: relative;
}

.selection-bar.show {
    display: flex;
}

.selection-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
}

.selection-info .material-symbols-outlined {
    font-size: 24px;
}

.selection-info span:last-child {
    font-weight: 700;
    font-size: 1.2rem;
}

.selection-actions {
    display: flex;
    gap: 0.75rem;
    position: relative;
    align-items: center;
}

.selection-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: transparent;
    color: #333333;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.selection-actions button:hover {
    background: var(--primary-color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.selection-actions button.btn-delete-selected:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.selection-actions button .material-symbols-outlined {
    font-size: 20px;
}

/* Move Folder Dropdown */
.move-folder-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 100;
    display: none;
    overflow: hidden;
}

.move-folder-list.show {
    display: block;
}

.move-folder-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333333;
    font-size: 0.95rem;
    background: transparent;
}

.move-folder-option:hover {
    background: var(--primary-color-light);
    color: #333333;
}

.move-folder-option:first-child {
    border-radius: 8px 8px 0 0;
}

.move-folder-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .folder-item:hover {
        background: transparent;
    }
    
    .folder-item:active {
        background: var(--primary-color-light);
    }
    
    .creation-card:hover {
        transform: none;
    }
}
