/* Estilos globales */
:root {
    --primary-color: #2563eb;
    --primary-hover-color: #1d4ed8;
    --text-color: #333;
    --bg-color: #f4f7f6;
    --card-bg-color: #fff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Contenedor principal */
.container {
    background-color: var(--card-bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    text-align: center;
}

h1 {
    color: var(--primary-color);
    margin-top: 0;
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight {
    font-weight: bold;
    color: var(--primary-color);
}

.data-warning {
    color: #e53e3e; /* Color rojo de advertencia */
    font-style: italic;
}

/* Estilos del botón de descarga */
.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* Espacio entre el ícono y el texto */
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.download-button:hover {
    background-color: var(--primary-hover-color);
}

.download-button .icon {
    width: 20px;
    height: 20px;
}

.download-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.footer-msg {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .download-button {
        width: 100
        justify-content: center;
    }
}