﻿/* Estilos para la card */
.simple-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%; /* Para que se ajuste al contenedor */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animación suave */
}

    .simple-card:hover {
        transform: translateY(-5px); /* Efecto de elevación */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
    }

    .simple-card img {
        object-fit: cover;
        width: 100%;
        height: 180px; /* Ajusta según necesidad */
    }

.card-header {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding-right: 10px;
}

/* Calendario minimalista */
.minimal-calendar {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    width: 80px;
    font-family: 'Arial', sans-serif;
    margin-left: auto; /* Alinea a la derecha */
}

.minimal-calendar-header {
    color: white;
    padding: 5px 0;
    font-weight: bold;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
}

.minimal-calendar-day {
    font-size: 20px;
    padding: 6px 0;
    font-weight: bold;
    color: #333;
}

.minimal-calendar-time {
    padding: 5px 0;
    width: 100%;
    text-align: center;
    background: white;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: #333;
    font-weight: 600;
    border-top: 1px dashed #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.minimal-clock-icon {
    margin-right: 3px;
    font-size: 9px;
}

/* Carrusel */
.carousel-inner img {
    max-height: 550px; /* Ajusta según necesidad */
    object-fit: contain; /* Recorta la imagen en lugar de distorsionarla */
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.8); /* Fondo más oscuro y semitransparente */
    border-radius: 50%; /* Bordes redondeados */
    width: 40px; /* Ancho */
    height: 40px; /* Alto */
    top: 50%; /* Centrar verticalmente */
    transform: translateY(-50%); /* Ajuste fino para centrar */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.9)); /* Sombra más oscura */
}

.carousel-control-prev {
    left: 15px; /* Posición desde la izquierda */
}

.carousel-control-next {
    right: 15px; /* Posición desde la derecha */
}
