/* Importar fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* Estilos Generales y Reseteo */
:root {
    --primary-color: #0071c2;
    --secondary-color: #f7f7f7;
    --text-color: #333;
    --subtle-text-color: #666;
    --light-bg: #fff;
    --dark-bg: #2d3436;
    --accent-color: #ffb100;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Encabezado y Navegación */
.main-header {
    background-color: var(--light-bg);
    padding: 1rem 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin: 0;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
    transition: width 0.3s ease-out;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.user-actions {
    display: flex;
    gap: 0.8rem;
}

.nav-btn {
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn.register-btn {
    background-color: var(--primary-color);
    color: var(--light-bg);
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-bg);
}

.nav-btn.register-btn:hover {
    background-color: #005c9a;
    border-color: #005c9a;
}

.welcome-message {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logout-btn {
    padding: 0.5rem 1rem;
    background-color: #e60000;
    color: var(--light-bg);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #b30000;
}

/* Sección Hero */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-bg);
    background: url('https://source.unsplash.com/1920x1080/?republica-dominicana,hotel') no-repeat center center/cover;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* ========================================= */
/* Sección Principal (hero-section)          */
/* ========================================= */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://source.unsplash.com/1600x900/?beach,dominican-republic');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    height: 500px;
    display: flex; /* Habilita Flexbox */
    flex-direction: column; /* Apila el contenido verticalmente */
    justify-content: center; /* Centra el contenido verticalmente */
    align-items: center; /* Centra el contenido horizontalmente */
    position: relative; /* Se necesita para el z-index */
}

.hero-content {
    max-width: 800px;
    z-index: 2; /* Asegura que el contenido esté por encima del fondo */
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ========================================= */
/* Barra de Búsqueda (search-bar)            */
/* ========================================= */
.search-bar {
    background-color: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin-top: 30px; /* Separación del texto de arriba */
}

/* ... (mantén los estilos de los inputs y botones que ya tienes) ... */

.search-bar form {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px;
    align-items: flex-end;
}

/* ... (mantén el resto del código del buscador sin cambios) ... */

.search-bar .input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px; /* Asegura que los campos tengan un ancho mínimo */
}

.search-bar label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.search-bar input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Incluye padding y borde en el ancho total */
}

.search-bar button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0; /* Evita que el botón se reduzca */
}

.search-bar button:hover {
    background-color: var(--primary-color-dark);
}

/* Adaptaciones para tablets y dispositivos pequeños */
@media (max-width: 768px) {
    .search-bar form {
        flex-direction: column; /* Apila los elementos verticalmente en pantallas más pequeñas */
    }

    .search-bar .input-group {
        width: 100%;
        min-width: auto;
    }

    .search-bar button {
        width: 100%; /* El botón ocupa todo el ancho */
    }
}

/* Contenido Principal y Filtros */
.main-content-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1300px;
    margin: auto;
}

/* Sección de Filtros */
.filter-section {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    height: fit-content;
}

.filter-section hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 1.5rem 0;
}

.filter-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

.filter-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-options li {
    margin-bottom: 0.8rem;
}

.filter-options label {
    font-size: 1rem;
    color: var(--subtle-text-color);
    cursor: pointer;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.filter-options label:hover {
    color: var(--text-color);
}

.filter-options input[type="checkbox"] {
    cursor: pointer;
    accent-color: var(--primary-color);
}

.filter-btn {
  /* Estilos originales del botón */
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;

  /* Nuevos estilos de fuente para un aspecto profesional */
  font-family: 'Poppins', sans-serif; /* Usamos la fuente importada */
  font-weight: 500; /* Le da un grosor medio para mejor legibilidad */
  font-size: 1rem; /* Un tamaño estándar */
  text-transform: none; /* Evita que el texto sea todo mayúsculas si lo estaba */
  letter-spacing: normal; /* Normaliza el espaciado entre letras */
  color: #333; /* Un color de texto oscuro y elegante */
}

.filter-btn:hover {
    background-color: #f0f0f0;
}

.filter-btn.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.price-filter input {
    width: 90px;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Sección de Propiedades */
.properties-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Tarjetas de Propiedades */
/* Tarjetas de Propiedades */
.property-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 420px;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Contenedor de imagen dentro de la tarjeta */
.property-img-container {
    flex: 0 0 40%;          /* Ocupa el 40% de la tarjeta */
    height: auto;           /* ✅ Se adapta a la altura del contenedor */
    display: flex;
    align-items: stretch;   /* ✅ Estira la imagen en vertical */
    overflow: hidden;
}

/* Imagen del hotel */
.property-img {
    width: 100%;
    height: 100%;           /* ✅ Siempre llena el alto */
    object-fit: cover;      /* ✅ Se adapta sin deformarse */
    transition: transform 0.5s ease;
}

/* Efecto hover en la imagen */
.property-card:hover .property-img {
    transform: scale(1.05);
}


.property-info-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
}

/* Nuevo Estilo para la lista de amenidades */
/* Amenidades (chips estilo Booking) */
.amenities-list {
    margin: 10px 0;
    font-size: 0.9em;
}

.amenities-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;   /* ✅ margen inferior para separar del botón */
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenities-grid li {
    background-color: #e6f4f9;
    color: #0071c2;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
    white-space: nowrap;
}



.property-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.2rem;
}

.property-location {
    font-size: 0.9rem;
    color: var(--subtle-text-color);
    margin-bottom: 0.5rem;
}

.property-rating {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.property-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 1rem;
    flex-grow: 1;   /* ✅ ocupa solo lo necesario, deja espacio al precio/botón */
}

.property-price-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* ✅ asegura que quede al fondo */
    gap: 20px;
    padding-top: 10px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

/* 💲 Precio estilizado */
.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0071c2;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}
.price-note {
    font-size: 0.85rem;
    color: #666;
}

/* 🔘 Botón de Ver Disponibilidad con estilo pro */
/* 🔘 Botón bien visible y bonito */
.view-details-btn {
    padding: 0.8rem 1.6rem;
    background: linear-gradient(135deg, #0071c2, #005a99);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 113, 194, 0.3);
    white-space: nowrap;
}
.view-details-btn:hover {
    background: linear-gradient(135deg, #005a99, #003f73);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 113, 194, 0.4);
}

.no-results {
    text-align: center;
    padding: 5rem 0;
    font-size: 1.5rem;
    color: var(--subtle-text-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--dark-bg);
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Modales de Autenticación */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-color);
}

.modal h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--light-bg);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #005c9a;
}

/* Responsividad */
@media (max-width: 1024px) {
    .main-content-container {
        grid-template-columns: 1fr;
    }
    .filter-section {
        width: 100%;
    }
    .property-card {
        flex-direction: column;
    }
    .property-img-container {
        flex: 1;
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .search-bar form {
        flex-direction: column;
        gap: 0.5rem;
    }
    .search-bar input {
        width: 100%;
    }
    .property-card {
        margin: 0;
    }
}



/* Estilos para los enlaces dentro de los modales */
.modal-link-text {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
}

.modal-link-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.modal-link-text a:hover {
    text-decoration: underline;
}

/* Elimina el subrayado de los enlaces de las tarjetas de propiedades */
.property-card-link {
    text-decoration: none;
}

/* Estilos para la nueva cuadrícula de contacto */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.contact-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-item h4 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p,
.contact-item address {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.contact-item .contact-icon {
    font-size: 2.5rem;
    color: #007bff;
}

/* Estilos para la sección de Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
}

.blog-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #333;
}

.blog-post-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.read-more-btn {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #0056b3;
}

/* Estilos para la sección de Misión, Visión y Valores */
.mission-vision-container {
    display: flex; /* Alinea los elementos en una fila */
    flex-wrap: wrap; /* Permite que los elementos se envuelvan si no hay suficiente espacio */
    gap: 20px; /* Espacio entre los elementos */
    background-color: #f9f9f9; /* Un color de fondo suave para el cuadro */
    border: 1px solid #e0e0e0; /* Un borde sutil */
    border-radius: 12px; /* Esquinas redondeadas para un aspecto moderno */
    padding: 30px; /* Espacio interno para que no se vea el texto pegado a los bordes */
    margin-top: 40px; /* Espacio superior para separarlo de la sección de arriba */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); /* Sombra suave para un efecto 3D */
    justify-content: space-around; /* Distribuye el espacio entre los elementos */
}

.mvv-item {
    flex: 1; /* Permite que cada elemento ocupe una porción igual del espacio */
    min-width: 250px; /* Asegura que no se hagan demasiado pequeños en pantallas chicas */
    text-align: center; /* Centra el texto dentro de cada elemento */
    padding: 20px; /* Espaciado dentro de cada cuadro individual */
    border-right: 1px solid #e0e0e0; /* Línea de división entre las cajas */
}

/* Elimina la última línea divisoria para un diseño más limpio */
.mvv-item:last-child {
    border-right: none;
}

.mvv-title {
    font-size: 1.5rem;
    color: #007bff; /* Color azul distintivo para los títulos */
    margin-bottom: 10px;
}

.mvv-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Estilo para las estrellas de calificación */
.property-rating {
    color: #ffc107; /* Color de las estrellas, un amarillo dorado */
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.star-filled {
    color: #ffc107;
    font-size: 1.2em; /* Hace las estrellas un poco más grandes */
}

/* Ajuste para la página de detalles */
#details-rating {
    font-size: 1.5rem; /* Estrellas más grandes en la página de detalles */
    margin-top: -1rem;
    margin-bottom: 0.5rem;
}

/* Estilos para el deslizador de precio (slider) */
.price-filter {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.price-filter p {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-top: 1rem;
    margin-bottom: 0;
}

.price-filter #price-display {
    color: #007bff;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    outline: none;
    border-radius: 5px;
    transition: background 0.2s;
    cursor: pointer;
}

/* Estilo para el "pulgar" o "thumb" del deslizador en Chrome, Safari y Opera */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Estilo para el "pulgar" del deslizador en Firefox */
input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}



/* ========================= */
/* Footer profesional        */
/* ========================= */
.site-footer {
  background: #1c1c1c;
  color: #ddd;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #aaa;
}

/* Redes sociales */
.social-links li {
  display: inline-block;
  margin-right: 15px;
}

.social-links li a {
  color: #bbb;
}

.social-links li a:hover {
  color: #fff;
}

/* ========================= */
/* Paginación hoteles        */
/* ========================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
}

.pagination button {
  background: #0071c2;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pagination button:hover {
  background: #005a99;
}

.pagination button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.pagination .active {
  background: #005a99;
  font-weight: bold;
}


/* ==========================
   Estilo Calendario Flatpickr
   ========================== */
.flatpickr-calendar {
  font-family: 'Montserrat', sans-serif;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.flatpickr-months {
  background: #0071c2;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #005fa3;
}

.flatpickr-current-month {
  font-size: 1rem;
  font-weight: 600;
}

.flatpickr-weekdays {
  background: #f7f9fc;
  border-bottom: 1px solid #e6e6e6;
}

.flatpickr-weekday {
  font-weight: 600;
  color: #555;
  font-size: 0.85rem;
}

.flatpickr-day {
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.flatpickr-day:hover {
  background: #eaf5ff;
  border-color: #0071c2;
  color: #0071c2;
}

.flatpickr-day.today {
  border: 1px solid #0071c2;
  color: #0071c2;
  font-weight: bold;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #0071c2;
  color: #fff;
  font-weight: 600;
  border: none;
}

.flatpickr-day.inRange {
  background: #cfe7f8;
  color: #0071c2;
}

/* Botones de navegación */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: #fff;
  transition: transform 0.2s ease;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  transform: scale(1.2);
  fill: #ffeb3b;
}




