/* 🚀 ANIMACIONES ESPECTACULARES PARA SUBIDA A GOOGLE DRIVE 🚀 */
/* Colores corporativos Cicumba */
:root {
    --cicumba-primary: #5a9b80;
    --cicumba-secondary: #6bc29a;
    --cicumba-accent: #7ecba3;
    --cicumba-success: #5bb88a;
    --cicumba-warning: #ffc107;
    --cicumba-danger: #e07070;
    --cicumba-light: #f0f5f2;
    --cicumba-dark: #2d4a3e;
}

/* 🎯 OVERLAY PRINCIPAL - ESPECÍFICO PARA GOOGLE DRIVE ANIMATIONS */
.google-drive-upload-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(135deg, 
        rgba(170, 210, 190, 0.95), 
        rgba(190, 220, 205, 0.95),
        rgba(180, 215, 198, 0.95)) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: fadeInOverlay 0.5s ease-in-out !important;
    pointer-events: all !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 🚫 OCULTAR CUALQUIER LOADING DE DEVEXPRESS/XAF DURANTE ANIMACIÓN */
.google-drive-upload-overlay ~ .dx-loadingindicator-wrapper,
.google-drive-upload-overlay ~ .dx-overlay-wrapper,
.google-drive-upload-overlay ~ [class*="loading"],
.google-drive-upload-overlay ~ [class*="spinner"],
body:has(.google-drive-upload-overlay) .dx-loadingindicator-wrapper,
body:has(.google-drive-upload-overlay) .dx-overlay-wrapper,
body:has(.google-drive-upload-overlay) [class*="loading"]:not(.google-drive-upload-overlay *),
body:has(.google-drive-upload-overlay) .dx-loadingindicator,
body:has(.google-drive-upload-overlay) .dx-loadingindicator-content,
body:has(.google-drive-upload-overlay) .dx-loadingindicator-icon,
body:has(.google-drive-upload-overlay) .dx-loadingindicator-segment,
body:has(.google-drive-upload-overlay) [class*="spinner"],
body:has(.google-drive-upload-overlay) [class*="loading-circle"],
body:has(.google-drive-upload-overlay) [class*="loading-ring"],
body:has(.google-drive-upload-overlay) [id*="loading"],
body:has(.google-drive-upload-overlay) [id*="spinner"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

/* 🔥 ELIMINAR ESPECÍFICAMENTE CÍRCULOS DE CARGA DURANTE ANIMACIÓN */
.google-drive-upload-overlay,
.google-drive-upload-overlay * {
    position: relative !important;
}

.google-drive-upload-overlay::after {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: transparent !important;
    z-index: 9999998 !important;
    pointer-events: none !important;
}

@keyframes fadeInOverlay {
    0% { 
        opacity: 0; 
        backdrop-filter: blur(0px); 
    }
    100% { 
        opacity: 1; 
        backdrop-filter: blur(10px); 
    }
}

/* 🌟 CONTENEDOR PRINCIPAL DE ANIMACIÓN */
.google-drive-animation-container {
    text-align: center !important;
    padding: 60px 50px !important;
    border-radius: 25px !important;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.18), 
        rgba(255, 255, 255, 0.08)) !important;
    border: 2px solid rgba(255, 255, 255, 0.30) !important;
    box-shadow: 
        0 20px 40px rgba(45, 74, 62, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
    animation: containerPulse 2s ease-in-out infinite !important;
    min-width: 450px !important;
    min-height: 350px !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    position: relative !important;
    overflow: visible !important;
    margin: auto !important;
    transform: translate(0, 0) !important;
}

/* 🚫 ELIMINAR TODOS LOS BORDES DE ELEMENTOS INTERNOS */
.google-drive-animation-container *,
.google-drive-animation-container *::before,
.google-drive-animation-container *::after {
    box-sizing: border-box !important;
}

/* 🚫 ELIMINAR BORDES DE CUALQUIER EMOJI O ICONO */
.google-drive-animation-container,
.google-drive-animation-container * {
    -webkit-text-stroke: none !important;
    -webkit-text-fill-color: unset !important;
    text-stroke: none !important;
    text-outline: none !important;
    font-smooth: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.google-drive-logo *,
.google-drive-logo *::before,
.google-drive-logo *::after {
    border: none !important;
    outline: none !important;
}

/* Excluir el icono principal del reseteo de box-shadow para mantener el efecto de luz */
.google-drive-icon *:not(.google-drive-icon),
.google-drive-icon *::before:not(.google-drive-icon::before),
.google-drive-icon *::after:not(.google-drive-icon::after) {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

@keyframes containerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* 🎨 LOGO GOOGLE DRIVE ANIMADO */
.google-drive-logo {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    position: relative !important;
    animation: logoFloat 3s ease-in-out infinite !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        filter: brightness(0.9) drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
        box-shadow: 0 0 10px rgba(90, 155, 128, 0.3);
    }
    25% { 
        transform: translateY(-5px) scale(1.05); 
        filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
        box-shadow: 0 0 25px rgba(90, 155, 128, 0.5);
    }
    50% { 
        transform: translateY(-8px) scale(1.1); 
        filter: brightness(1.4) drop-shadow(0 0 25px rgba(255, 255, 255, 0.7));
        box-shadow: 0 0 40px rgba(90, 155, 128, 0.7), 0 0 60px rgba(255, 255, 255, 0.2);
    }
    75% { 
        transform: translateY(-5px) scale(1.05); 
        filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
        box-shadow: 0 0 25px rgba(90, 155, 128, 0.5);
    }
}

.google-drive-icon {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(45deg, 
        var(--cicumba-primary), 
        var(--cicumba-secondary), 
        var(--cicumba-accent), 
        var(--cicumba-success)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 40px !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
    animation: iconPulseGlow 2s ease-in-out infinite !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

/* 🚫 ELIMINAR BORDES DE EMOJIS DE FORMA DRÁSTICA */
.google-drive-icon,
.upload-arrow,
.success-checkmark {
    /* Forzar renderizado sin bordes */
    font-family: "Twitter Color Emoji", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif !important;
    text-rendering: geometricPrecision !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    
    /* Eliminar cualquier tipo de borde */
    border: 0 solid transparent !important;
    outline: 0 solid transparent !important;
    box-shadow: 0 0 0 0 transparent !important;
    text-shadow: 0 0 0 transparent !important;
    
    /* Background y texto limpio */
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    
    /* Stroke y fill */
    -webkit-text-stroke: 0 !important;
    -webkit-text-stroke-width: 0 !important;
    -webkit-text-stroke-color: transparent !important;
    -webkit-text-fill-color: currentColor !important;
    
    /* Features y decoraciones */
    -webkit-font-feature-settings: normal !important;
    -moz-font-feature-settings: normal !important;
    font-feature-settings: normal !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    
    /* Filters para limpiar renderizado */
    filter: contrast(1) !important;
    -webkit-filter: contrast(1) !important;
    
    /* Overflow y display */
    overflow: visible !important;
    text-overflow: clip !important;
    
    /* Posicionamiento limpio */
    position: relative !important;
    transform: translateZ(0) !important;
}

/* 🔥 OVERRIDE DRÁSTICO - ELIMINAR CUALQUIER ESTILO GLOBAL */
.google-drive-animation-container .google-drive-icon,
.google-drive-animation-container .upload-arrow,
.google-drive-animation-container .success-checkmark,
div[class*="google-drive-icon"],
div[class*="upload-arrow"],
div[class*="success-checkmark"] {
    all: unset !important;
    font-size: 40px !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    font-family: "Twitter Color Emoji", "Segoe UI Emoji" !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: geometricPrecision !important;
}

/* 🚫 RESET TOTAL PARA ELEMENTOS ANIDADOS */
.google-drive-animation-container * {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
}

@keyframes iconPulseGlow {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(90, 155, 128, 0.3),
            0 0 25px rgba(90, 155, 128, 0.1),
            inset 0 0 15px rgba(255, 255, 255, 0.1);
        filter: brightness(1) blur(0px);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 0 35px rgba(90, 155, 128, 0.5),
            0 0 50px rgba(255, 255, 255, 0.15),
            0 0 70px rgba(90, 155, 128, 0.1),
            inset 0 0 25px rgba(255, 255, 255, 0.15);
        filter: brightness(1.2) blur(0px);
        transform: scale(1.02);
    }
}

.google-drive-icon::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent) !important;
    animation: iconShine 3s ease-in-out infinite !important;
    border: none !important;
    outline: none !important;
    border-radius: 50% !important;
}

@keyframes iconShine {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
        filter: blur(0px);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.05);
        filter: blur(0px);
    }
}

/* 📤 ANIMACIÓN DE SUBIDA */
.upload-progress-container {
    margin: 30px 0 !important;
    position: relative !important;
}

.upload-arrow {
    font-size: 60px !important;
    color: var(--cicumba-primary) !important;
    animation: arrowBounce 1s ease-in-out infinite !important;
    text-shadow: 0 0 20px rgba(90, 155, 128, 0.5) !important;
}

@keyframes arrowBounce {
    0%, 100% { 
        transform: translateY(0px); 
        text-shadow: 0 0 20px rgba(90, 155, 128, 0.5); 
    }
    50% { 
        transform: translateY(-15px); 
        text-shadow: 0 0 30px rgba(90, 155, 128, 0.8); 
    }
}

/* ⚡ PARTÍCULAS DE DATOS VOLANDO */
.data-particles {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    pointer-events: none !important;
}

.particle {
    position: absolute !important;
    width: 6px !important;
    height: 6px !important;
    background: var(--cicumba-primary) !important;
    border-radius: 50% !important;
    animation: particleFly 3s linear infinite !important;
    box-shadow: 0 0 10px rgba(90, 155, 128, 0.6) !important;
}

.particle:nth-child(1) { 
    animation-delay: 0s !important; 
    background: var(--cicumba-secondary) !important;
    top: 20% !important; left: 20% !important;
}
.particle:nth-child(2) { 
    animation-delay: 0.3s !important; 
    background: var(--cicumba-accent) !important;
    top: 30% !important; left: 70% !important;
}
.particle:nth-child(3) { 
    animation-delay: 0.6s !important; 
    background: var(--cicumba-success) !important;
    top: 60% !important; left: 30% !important;
}
.particle:nth-child(4) { 
    animation-delay: 0.9s !important; 
    background: var(--cicumba-primary) !important;
    top: 70% !important; left: 60% !important;
}
.particle:nth-child(5) { 
    animation-delay: 1.2s !important; 
    background: var(--cicumba-secondary) !important;
    top: 40% !important; left: 50% !important;
}
.particle:nth-child(6) { 
    animation-delay: 1.5s !important; 
    background: var(--cicumba-accent) !important;
    top: 80% !important; left: 20% !important;
}

@keyframes particleFly {
    0% { 
        transform: translateY(100px) scale(0); 
        opacity: 0; 
    }
    20% { 
        opacity: 1; 
        transform: translateY(80px) scale(1); 
    }
    80% { 
        opacity: 1; 
        transform: translateY(-80px) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-100px) scale(0); 
    }
}

/* 💫 ONDAS DE ENERGÍA */
.energy-waves {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 300px !important;
    height: 300px !important;
    pointer-events: none !important;
}

.wave {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid var(--cicumba-primary) !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    animation: waveExpand 2s ease-out infinite !important;
}

.wave:nth-child(2) { 
    animation-delay: 0.5s !important; 
    border-color: var(--cicumba-secondary) !important;
}
.wave:nth-child(3) { 
    animation-delay: 1s !important; 
    border-color: var(--cicumba-accent) !important;
}
.wave:nth-child(4) { 
    animation-delay: 1.5s !important; 
    border-color: var(--cicumba-success) !important;
}

@keyframes waveExpand {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* 📝 TEXTO DINÁMICO */
.upload-status-text {
    color: #2d4a3e !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    margin: 20px 0 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6) !important;
    animation: textGlow 2s ease-in-out infinite alternate !important;
}

@keyframes textGlow {
    0% { 
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6); 
        transform: scale(1); 
    }
    100% { 
        text-shadow: 0 0 10px rgba(90, 155, 128, 0.4); 
        transform: scale(1.03); 
    }
}

.upload-details {
    color: #3d6b58 !important;
    font-size: 16px !important;
    margin: 10px 0 !important;
    animation: detailsFade 3s ease-in-out infinite !important;
}

@keyframes detailsFade {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ✅ ANIMACIÓN DE ÉXITO */
.success-animation {
    animation: successPop 0.6s ease-out !important;
}

@keyframes successPop {
    0% { 
        transform: scale(0) rotate(-180deg); 
        opacity: 0; 
    }
    50% { 
        transform: scale(1.2) rotate(0deg); 
    }
    100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1; 
    }
}

.success-checkmark {
    font-size: 80px !important;
    color: var(--cicumba-success) !important;
    text-shadow: 0 0 30px rgba(40, 167, 69, 0.8) !important;
    animation: checkmarkBounce 0.8s ease-out !important;
}

@keyframes checkmarkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* 🌈 PROGRESO RAINBOW */
.rainbow-progress {
    width: 300px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px !important;
    margin: 20px auto !important;
    overflow: hidden !important;
    position: relative !important;
}

.rainbow-progress-bar {
    height: 100% !important;
    background: linear-gradient(90deg, 
        var(--cicumba-primary), 
        var(--cicumba-secondary), 
        var(--cicumba-accent), 
        var(--cicumba-success)) !important;
    border-radius: 4px !important;
    animation: progressRainbow 2s linear infinite !important;
    transform: translateX(-100%) !important;
}

@keyframes progressRainbow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400px); }
}

/* 🎆 EFECTOS DE SALIDA */
.exit-animation {
    animation: fadeOutSpectacular 1s ease-in-out forwards !important;
}

@keyframes fadeOutSpectacular {
    0% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
        backdrop-filter: blur(10px); 
    }
    50% { 
        transform: scale(1.1) rotate(5deg); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0.8) rotate(-10deg); 
        backdrop-filter: blur(0px); 
        visibility: hidden; 
    }
}

/* 🗑️ ESTILOS PARA MODO ELIMINACIÓN - Verde cálido con tonos suaves */
.google-drive-upload-overlay[data-delete-mode="true"] {
    background: linear-gradient(135deg, 
        rgba(210, 190, 170, 0.95), 
        rgba(200, 185, 168, 0.95),
        rgba(215, 195, 175, 0.95)) !important;
}

.google-drive-upload-overlay[data-delete-mode="true"] .google-drive-animation-container {
    border: 2px solid rgba(180, 140, 110, 0.35) !important;
    box-shadow: 0 20px 40px rgba(120, 90, 70, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.google-drive-upload-overlay[data-delete-mode="true"] .google-drive-icon {
    color: #8b6b50 !important;
}

.google-drive-upload-overlay[data-delete-mode="true"] .upload-arrow {
    transform: rotate(180deg) !important;
    color: #c0856a !important;
    text-shadow: 0 0 15px rgba(192, 133, 106, 0.4) !important;
}

.google-drive-upload-overlay[data-delete-mode="true"] .particle {
    background: linear-gradient(45deg, #c0856a, #d4a088) !important;
    box-shadow: 0 0 8px rgba(192, 133, 106, 0.5) !important;
}

.google-drive-upload-overlay[data-delete-mode="true"] .wave {
    border-color: rgba(192, 133, 106, 0.35) !important;
}

.google-drive-upload-overlay[data-delete-mode="true"] .rainbow-progress-bar {
    background: linear-gradient(90deg, 
        #c0856a 0%, 
        #d4a088 25%, 
        #c0856a 50%, 
        #b07a60 75%, 
        #c0856a 100%) !important;
}

.google-drive-upload-overlay[data-delete-mode="true"] .upload-status-text {
    color: #5a3e2e !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5) !important;
}

.google-drive-upload-overlay[data-delete-mode="true"] .upload-details {
    color: #7a5a45 !important;
}

/* 🗑️ ANIMACIONES DE ELIMINACIÓN - Suaves */
@keyframes deleteGlow {
    0% { 
        text-shadow: 0 0 10px rgba(192, 133, 106, 0.4) !important;
        transform: scale(1) !important;
    }
    100% { 
        text-shadow: 0 0 20px rgba(192, 133, 106, 0.7) !important;
        transform: scale(1.05) !important;
    }
}

@keyframes deleteBounce {
    0%, 100% { 
        transform: rotate(180deg) translateY(0px) !important;
        text-shadow: 0 0 10px rgba(192, 133, 106, 0.4) !important;
    }
    50% { 
        transform: rotate(180deg) translateY(-10px) !important;
        text-shadow: 0 0 20px rgba(192, 133, 106, 0.7) !important;
    }
}

@keyframes deleteParticleFloat {
    0% {
        transform: translateY(100px) rotate(0deg) !important;
        opacity: 0 !important;
    }
    10% { opacity: 1 !important; }
    90% { opacity: 1 !important; }
    100% {
        transform: translateY(-100px) rotate(360deg) !important;
        opacity: 0 !important;
    }
}

@keyframes deleteEnergyPulse {
    0% {
        transform: scale(1) !important;
        opacity: 1 !important;
        border-color: rgba(192, 133, 106, 0.6) !important;
    }
    100% {
        transform: scale(2) !important;
        opacity: 0 !important;
        border-color: rgba(192, 133, 106, 0.1) !important;
    }
}

@keyframes deleteOverlayPulse {
    0%, 100% { 
        background: linear-gradient(135deg, rgba(210, 190, 170, 0.95), rgba(200, 185, 168, 0.95)) !important;
    }
    50% { 
        background: linear-gradient(135deg, rgba(215, 195, 175, 0.95), rgba(205, 190, 172, 0.95)) !important;
    }
}

@keyframes deleteIntenseGlow {
    0% { 
        text-shadow: 0 0 10px rgba(192, 133, 106, 0.5) !important;
        transform: scale(1) !important;
    }
    100% { 
        text-shadow: 0 0 20px rgba(192, 133, 106, 0.8) !important;
        transform: scale(1.08) !important;
    }
}

@keyframes deleteDestructiveBounce {
    0%, 100% { 
        transform: rotate(180deg) translateY(0px) scale(1) !important;
    }
    50% { 
        transform: rotate(180deg) translateY(-15px) scale(1.1) !important;
    }
}

@keyframes deleteParticleDestroy {
    0% { transform: translateY(80px) rotate(0deg) scale(1) !important; opacity: 0 !important; }
    10% { opacity: 1 !important; }
    50% { transform: translateY(0px) rotate(180deg) scale(1.2) !important; opacity: 1 !important; }
    100% { transform: translateY(-100px) rotate(360deg) scale(0.5) !important; opacity: 0 !important; }
}

@keyframes deleteEnergyExplosion {
    0% { transform: scale(0.5) !important; opacity: 1 !important; border-color: rgba(192, 133, 106, 0.7) !important; }
    50% { transform: scale(1.5) !important; opacity: 0.6 !important; border-color: rgba(192, 133, 106, 0.4) !important; }
    100% { transform: scale(2.5) !important; opacity: 0 !important; border-color: rgba(192, 133, 106, 0.1) !important; }
}

@keyframes deleteProgressIntense {
    0% { background-position: 0% 50% !important; }
    50% { background-position: 100% 50% !important; }
    100% { background-position: 200% 50% !important; }
}

@keyframes deleteTextPulse {
    0%, 100% { 
        color: #7a5a45 !important;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5) !important;
        transform: scale(1) !important;
    }
    50% { 
        color: #5a3e2e !important;
        text-shadow: 0 1px 5px rgba(255, 255, 255, 0.6) !important;
        transform: scale(1.03) !important;
    }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .google-drive-animation-container {
        margin: 20px !important;
        padding: 30px 20px !important;
    }
    
    .upload-status-text {
        font-size: 20px !important;
    }
    
    .upload-arrow {
        font-size: 50px !important;
    }
    
    .google-drive-logo {
        width: 60px !important;
        height: 60px !important;
    }
}