.no-transition * {
    transition: none !important;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s, color 0.3s;
}

/* Header Styles */
header {
    background-color: #333;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: #444;
}

nav ul li a.active {
    color: #007BFF;
    font-weight: bold;
    border-bottom: 2px solid #007BFF;
}

nav ul li a.active:hover {
    color: #0056b3;
    box-shadow: none; /* Opcional: Elimina el box-shadow en el estado activo */
}

/* Estilo del botón de interruptor */
#theme-toggle {
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin-left: 20px;
}
/* Estilo del deslizador */
#theme-toggle .slider {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    transition: transform 0.3s ease-in-out;
    transform: translateX(2px);
}

/* Estado cuando está en modo oscuro */
body.dark-mode #theme-toggle {
    background-color: #444;
}

body.dark-mode #theme-toggle .slider {
    transform: translateX(26px);
}


main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



section {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    transition: background-color 0.3s, box-shadow 0.3s;
    width: 80%;
}
section h1{

    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #007BFF;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;

}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

footer img {
    width: 24px;
    height: 24px;
}

/* Dark mode */
.dark-mode {
    background-color: #121212;
    color: white;
}

.dark-mode header, .dark-mode footer {
    background-color: #1e1e1e;
}

.dark-mode .coming-soon h2 {
    color: #00aaff;
}

.dark-mode .coming-soon p {
    color: #ccc;
}

.dark-mode nav ul li a {
    color: #ddd;
}

.dark-mode nav ul li a:hover {
    color: #f0f0f0;
}

.dark-mode footer a {
    color: #ddd;
}

.dark-mode #theme-toggle {
    background-color: #555;
}

.dark-mode #theme-toggle:hover {
    background-color: #666;
}

.image-container {
    text-align: center;
}

.image-container img {
    max-width: 80%; 
    height: auto;
} 

.dashboard-button {
    background-color: #007bff; /* Azul moderno */
    color: #fff; /* Texto blanco */
    border: none; /* Sin bordes */
    border-radius: 5px; /* Bordes redondeados */
    padding: 10px 20px; /* Espaciado interno */
    font-size: 16px; /* Tamaño de fuente */
    font-weight: bold; /* Negrita para resaltar el texto */
    cursor: pointer; /* Cambia el cursor al pasar por encima */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra ligera */
    transition: background-color 0.3s, transform 0.2s; /* Animaciones suaves */
}

.dashboard-button:hover {
    background-color: #0056b3; /* Azul más oscuro al pasar el mouse */
    transform: scale(1.05); /* Aumenta ligeramente el tamaño */
}

.dashboard-button:active {
    background-color: #004494; /* Azul aún más oscuro al hacer clic */
    transform: scale(0.98); /* Reduce ligeramente el tamaño */
}

.dashboard-button:focus {
    outline: none; /* Quita el borde por defecto al enfocarse */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* Resalta con un borde azul suave */
}

/* Dark mode */
.dark-mode {
    background-color: #121212;
    color: white;
}

.dark-mode header,
.dark-mode footer {
    background-color: #1e1e1e;
}

.dark-mode section {
    background-color: #1e1e1e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.dark-mode section h1,
.dark-mode section h2,
.dark-mode section h3 {
    color: #ddd;
}

.dark-mode section p,
.dark-mode section ul,
.dark-mode section ol {
    color: #ccc;
}

.dark-mode nav ul li a {
    color: #ddd;
}

.dark-mode nav ul li a:hover {
    color: #f0f0f0;
}

.dark-mode footer a {
    color: #ddd;
}

.dark-mode #theme-toggle {
    background-color: #555;
}

.dark-mode #theme-toggle:hover {
    background-color: #666;
}
.dark-mode a {
    color: #53a6ff;
}