/* Estilos simples para lista de precios en landing */
.file-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.file-info-mini {
    margin-top: 0.5rem;
    text-align: center;
    color: var(--gray-color);
}

.download-btn.disabled {
    background-color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.download-btn.disabled:hover {
    transform: none !important;
}

.update-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.update-notification.show {
    transform: translateX(0);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .update-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }
    
    .update-notification.show {
        transform: translateY(0);
    }
}