/* =====================================================
   GetSaveFast - Custom Styles
   =====================================================
   This file contains all custom CSS styles for the 
   GetSaveFast Universal File Converter application.
   ===================================================== */

/* =====================================================
   DROP ZONE STYLES
   ===================================================== */
#dropZone {
    transition: all 0.3s;
}

#dropZone.drag-over {
    border-color: #3b82f6;
    background: #eff6ff;
    transform: scale(1.01);
}

/* =====================================================
   FORMAT BUTTON STYLES
   ===================================================== */
.format-btn {
    transition: all 0.2s;
}

.format-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.format-btn.selected {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.animate-spin-slow {
    animation: spin 1.5s linear infinite;
}

.animate-pop {
    animation: pop 0.4s ease-out forwards;
}

/* =====================================================
   PROGRESS BAR
   ===================================================== */
.progress-bar {
    background: linear-gradient(90deg, #3b82f6, #10b981);
}

/* =====================================================
   ADVERTISEMENT SPACE
   ===================================================== */
.ad-space {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 2px dashed #cbd5e1;
}

/* =====================================================
   DOCX RENDER CONTAINER
   Hidden container for document conversion processing
   ===================================================== */
#docx-render {
    position: fixed;
    top: 0;
    left: 0;
    width: 210mm;
    min-height: 100vh;
    background: #525659;
    z-index: -9999;
    overflow: visible;
    padding: 20px;
}
