.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;

}
section h2,
section h3 {
    margin: 0;
    /* padding-bottom: 10px; */
    /* border-bottom: 2px solid #007BFF; */
    /* font-size: 24px; */
    color: #333;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #f9f9f9;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 10px;
    text-align: left;
}
th {
    background-color: #0e4c8e;
    color: white;
}
td {
    color: black;
}
.coming-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    text-align: center;
}

.coming-soon h2 {
    font-size: 48px;
    color: #007BFF;
    margin: 0;
    margin-bottom: 20px;
}

.coming-soon p {
    font-size: 24px;
    color: #555;
}


.image-container {
    text-align: center;
}

.image-container img {
    max-width: 80%; 
    height: auto;
} 

/* 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 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;
}