body {
    background: linear-gradient(127deg, #41083e 0%, #2a5298 100%);
    color: #fff;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    padding: 20px;
    margin: 10px auto;
}

h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.solunar {
    border-collapse: collapse;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0px;
}

.solunar th, .solunar td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 8px;
    text-align: center;
    vertical-align: middle;
}

.solunar th {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.box {
    min-height: 90px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.day {
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.image img {
    max-width: 45px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image img:hover {
    transform: scale(1.1);
}

.current {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
    border: 2px solid #fff;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.current .day {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.navigation {
    margin: 30px 0;
}

.navigation a {
    margin: 0 10px;
    padding: 12px 20px;
    text-decoration: none;
    background: linear-gradient(344deg, #3f2fbb 0%, #580ea5 100%);
    color: white;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.navigation a:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-decoration: none;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Estilo para las imágenes de la leyenda */
.img-fluid {
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.05);
}

/* Efectos de carga */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    .navigation a {
        margin: 5px;
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .image img {
        max-width: 35px;
    }
    
    .day {
        font-size: 1em;
    }
    
    .solunar th {
        font-size: 0.8em;
        padding: 8px 4px;
    }
}

@media (max-width: 480px) {
    .navigation a {
        display: block;
        margin: 5px auto;
        max-width: 200px;
    }
    
    .image img {
        max-width: 30px;
    }
    
    .solunar th, .solunar td {
        padding: 6px 2px;
    }
} 