body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e6e5e3;
    color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: black;
    border-bottom: 1px solid #e0e0e0;
    height: 5vh;
}

.logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cliente {
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}

.logo_cliente {
    height: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: white;
    margin: 0 15px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 4px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.usuario {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nombre-usuario {
    display: block;
    font-size: 1.2rem;
    color: white;
}

.icono-usuario {
    height: 2rem;
    width: 2rem;
    background-color: #5036e4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 80px;
    background-color: black;
    color: white;
    font-size: 0.9rem;
    box-sizing: border-box;
    width: 100%;
    gap: 30px;
}

.columna-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.logo-voluntweb-footer {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
}

.info-legal {
    width: 25%;
}

.info-legal a {
    color: white;
    text-decoration: none;
    margin-right: 100px;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.ayuda {
    margin-top: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.info-legal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-nav a:hover::after {
    width: 100%;
}

.info-legal a:hover::after {
    width: 100%;
}

.redes-sociales {
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 1.5rem;
    align-self: flex-end;
    margin-left: auto;
}

.redes-sociales a {
    color: white;
    text-decoration: none;
}

.calendario {
    background-color: #2c2e3a;
    color: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.mes-calendario {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
}

.tabla-calendario {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.nombre-dia {
    font-size: 0.8rem;
    opacity: 0.7;
    padding-bottom: 10px;
}

.dia {
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    max-width: 40px;
    margin: 0 auto;
}

.dia.bloqueado {
    background-color: #ff2d55;
}

.dia.feriado {
    background-color: #00d97e;
}

.botones-calendario {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    height: 40px;
}

.dia:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn {
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.btn-bloquear {
    background-color: #ff2d55;
}

.btn-feriado {
    background-color: #00d97e;
}

.btn-habilitar {
    background-color: #222;
}

.btn:active {
    opacity: 0.5;
    transform: translateY(2px);
}

.container {
    display: flex;
    gap: 20px; 
    justify-content: center; 
}

h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.layout {
    display: flex;
    align-items: flex-start; 
    gap: 120px; 
    justify-content: center; 
    padding-bottom: 150px;
    padding-top: 100px;
}

.carta {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 0 4px white, 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    width: 500px;
}

.content {
    margin-bottom: 25px;
}

.report-container{
    background: #2c2e3a;
    border-radius: 8px;
    padding: 25px;
    width: 500px;
}

.report-container2{
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 0 4px white, 0 2px 10px rgba(0,0,0,0.05);
}

.report-title{
    color: white;
}

.card table {
    width: 500px;
    border: 2px solid #111111;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 4px 4px 0px #1a1a1a;
    background-color: white;
    max-width: 500px;
    overflow: hidden;
}

.card-vacaciones {
    background: #e9e9e9;
    padding: 25px;
    border-radius: 18px;
    width: 400px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.card-vacaciones h3 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.vacaciones-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.circulo {
    width: 50px;
    height: 50px;
    background: #10c469;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.texto span {
    display: block;
    color: #555;
}

.texto strong {
    font-size: 13px;
}

.card-vacaciones h4 {
    margin-bottom: 15px;
    font-size: 14px;
    color: #333333;
}

.feriado {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.badge {
    background: #10c469;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.boton-tabla{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
