/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.sesion {
    margin-right: auto; /* Empuja este elemento a la derecha */
}
/* Estilos del encabezado */
header {
    background-color: #333;
    color: white;
    padding: 1px 0;
    text-align: center;

    position: fixed;
    width: 100%;
}

h1 {
    margin: 0;
}
section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Estilos de las secciones */
main {
    padding: 20px;
}


h2 {
    color: #333;
}

/* Estilos del pie de página */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    
    position: fixed;
    bottom: 0;
    width: 100%;
}

.boton-flotante {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: #f6f7f8; /* Color del botón */
    color: rgb(2, 0, 0);
    border: none;
    border-radius: 65%;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0px 25px 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 1000; /* Para que esté encima de otros elementos */
}

.boton-flotante:hover {
    background-color: #858686; /* Color al pasar el cursor */
}