@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fa;
    margin: 0;
    padding: 0;
    color: #333;
    padding-bottom: 120px;
}

#top-bar {
    background-color: #b4190d;
    padding: 10px;
    text-align: right;
    color: white;
}

#user-menu a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

#user-menu a:hover {
    text-decoration: underline;
}

/* Contenedor de archivos */
#file-container {
    margin: 20px auto;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

#file-container div {
    padding: 15px;
    background-color: #f7f9fc;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;

    transition: background-color 0.3s ease, transform 0.3s ease;
}

#file-container div:hover {
    background-color: #e6eff7;
    transform: translateY(-3px);
}

/* Estilo del botón de volver */
#back-button {
    background-color: #b4190d;
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: block;
    margin: 20px auto;
}

/* Navegación inferior */
#bottom-navigation {
    background-color: #b4190d;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

#bottom-navigation a {
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

#bottom-navigation a:hover {
    color: #ffe5e5;
    transform: translateY(-5px);
}

#bottom-navigation img {
    display: block;
    margin: 0 auto 5px;
    width: 35px;
    transition: filter 0.3s ease;
}

/* Efecto para enlaces activos */
a.active-link {
    background-color: #b4190d;
    color: white;
    border-radius: 5px;
    padding: 10px;
}

a.active-link img {
    filter: brightness(0) invert(1);
}

/* Estilo de los botones */
button {
    background-color: #b4190d;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
/* Estilo de los botones */
button {
    background-color: #b4190d;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #b12a2c;
    transform: translateY(-2px);
}