/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 12 ene 2026, 16:48:13
    Author     : Clase
*/

.menu{
    position: relative;
    width: 100%;
    border-radius: 10px;
}

.menu h2{
    margin-bottom: 10px;
}

.menu h3{
    font-weight: bold;
    background-color: #ECF0F1;
    width: 90%;
    border-radius: 8px;
    padding: 12px 15px;
    line-height: 1.4;
    white-space: normal;
    color: #0099ff;
}

.menu a{
    display: block;
    font-weight: bold;
    background-color: #ECF0F1;
    width: 90%;
    border-radius: 8px;
    text-decoration: none;
    padding: 12px 15px;
    line-height: 1.4;
    white-space: normal;
    color: #0099ff;
}

.menu li{
    display: block;
    margin: 10px;
    text-align: left;
    background: #ecf0f1;
    border-left: 5px solid #3498db;
    border-radius: 8px;
    width: 90%;
}

.menu li:hover{
    background: #d6eaf8;
    border-left: 5px solid #251abc;
}

.tema{
    background-color: white;

    width: 90%;
}

.tema p{
    font-weight: bold;
}

.tema a{
    text-decoration: none;
}

.tema a, .tema p{
    text-align: left;
    background-color: transparent;
    
    padding: 10px 15px;
    line-height: 1.4;
    white-space: normal;
}

.menu a, .tema a{
    word-wrap: break-word;
    overflow-wrap: break-word;
}

ul {
    list-style: none;
    padding: 10px;
}

@media(max-width: 600px){
    .menu{
        padding: 10px;
        font-size: 14px;
    }
}