:root {
        --amarillo: #f2c960 ;
        --lila: #858ff3 ;     /* Un lila muy claro, similar al azul de fondo anterior */
        --gris: #f2f2f2;     /* Un gris muy claro para fondos hover */
        --azul-principal: #1c2b39; /* Azul primario de Bootstrap para mantener consistencia */
		--azul-tenue:#3568bb;
}

            .modal-overlay-reserva {
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.6);
                z-index: 999;
                display: flex !important;
                align-items: center;
                justify-content: center;
                min-height: 100vh;
                min-width: 100vw;
            }
            .modal-content-reserva {
                background: #fff;
                padding: 2rem 2.5rem;
                border-radius: 12px;
                box-shadow: 0 8px 32px rgba(0,0,0,0.2);
                text-align: center;
                max-width: 350px;
                width: 100%;
                margin: 0;
            }
            .modal-content-reserva h4 {
                margin-bottom: 1rem;
                color: #2d3748;
            }
            .modal-content-reserva p {
                margin-bottom: 1.5rem;
                color: #444;
            }

.text-primary{
    color: var(--lila)!important;
}

.day.disabled {
    background: #f1f1f1;
    color: #aaa;
    cursor: not-allowed;
    pointer-events: none;
}

.time-slot.disabled {
    background: #f2f2f2;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

.time-slot.booked {
    background: #ffd6d6;
    color: #a00;
}

.time-slot {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ccc;
}

.time-slot.available {
    background-color: #e0f7fa; /* celeste claro */
    color: #007b8f;
}

.time-slot.booked {
    background-color: #f9dddd; /* gris */
    border-color: #f9dddd;
    border:1px solid #f17777;
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through; /* opcional, para que se note aún más */
}


.img-services-circles{
    width: 70%;
}



/* Estilo para el slot de tiempo seleccionado */
.time-slot.selected {
    background-color: #ffc107 !important;
    color: #000 !important;
    border: 2px solid #ff9800 !important;
    font-weight: bold;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.4);
}

.time-slot.available:hover {
    background-color: #fff3cd;
    cursor: pointer;
    transform: scale(1.02);
    transition: all 0.2s ease;
}

.time-slot.booked.disabled {
    background-color: #e0e0e0 !important;
    color: #999 !important;
    cursor: not-allowed !important;
}

.time-slot {
    transition: all 0.3s ease;
}

/* Estilo para día seleccionado en el calendario */
.day.selected {
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: bold;
    border-radius: 50%;
}



        /* Estilos para el componente de disponibilidad */
        .availability-col { 
            margin-left: -10px;
            border-radius: 0.5rem; 
            
        }
        /* Contenedor principal para las columnas de los días */
        .availability-schedule {
            display: grid;
            /* Crea 3 columnas de igual tamaño */
            grid-template-columns: repeat(3, 1fr); 
            /* Espacio reducido entre columnas */
            margin-bottom: 1.5rem;
        }
        /* Estilo para cada columna de día individual */
        .day-column {
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        /* Estilo para la cabecera de cada día */
        .day-header {
            padding-bottom: 0.75rem;
            margin-bottom: 0.75rem;
            border-bottom: 1px solid gray;
            color: var(--azul-tenue);
        }
        .day-header strong { font-size: 0.9rem; display: block; }
        .day-header span { font-size: 0.8rem; color: var(--azul-tenue); }
        
        /* Contenedor para los horarios de cada día */
        .time-slots {
            display: flex;
            flex-direction: column;
           
        }
        /* Estilo para cada bloque de horario */
        .time-slot {
            padding: 0.75rem 0.5rem; 
            border: 1px solid #dee2e6;
            border-radius: 0.25rem; 
            color: #adb5bd; /* No disponible */
        }
        .time-slot.available {
            background-color: #e7f1ff; 
            border-color: #007bff; 
            color: #007bff;
            cursor: pointer; 
            font-weight: 500;
        }
        .time-slot.available:hover { background-color: #007bff; color: white; }
        
        .show-more-hours {
            display: block; text-align: center; margin-top: 1rem;
            color: #6c757d; font-size: 0.9rem; font-weight: 500;
        }
        /* Estilos para el calendario del modal */
        .calendar-table { width: 100%; text-align: center; border-collapse: collapse; }
        .calendar-table th { padding: 0.5rem; font-weight: 500; }
        .calendar-table td { padding: 1rem 0.5rem; border: 1px solid #f0f0f0; }
        .calendar-day.available {
            background-color: #e7f1ff; color: #007bff; font-weight: bold;
            cursor: pointer; border-radius: 50%;
        }
        .calendar-day.available:hover { background-color: #007bff; color: white; }












#calendar {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
}

.fc-event {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.fc-event:hover {
    opacity: 0.9;
}

.fc-daygrid-event-dot {
    display: none; /* Oculta el punto del evento */
}






.swal-popup-topmost {
    z-index: 9999 !important;
}







.fc-header-toolbar {
    padding: 10px 20px;
    margin-bottom: 0;
    background: #f8f9fa;
}

.fc-day-header {
    background: #007bff;
    color: white;
    padding: 8px 0;
}

.fc-event {
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.85em;
    padding: 2px 5px;
}

.fc-time-grid-event .fc-time {
    font-weight: bold;
}

.btn-calendar{
    padding: 7px;
    font-size: 25px;
    border-color: white;
    color: var(--azul-principal)!important;
}

.btn-calendar:hover {
    color: white!important;
    background-color: var(--amarillo)!important;
    border-color: var(--amarillo)!important;
}















.contenedor-detalles{
    padding: 1.5rem;
    margin-left: 3rem;
    margin-right: 3rem;
}







/* Estilos para el calendario */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
}

.day-header {
    text-align: center;
    font-weight: bold;
    padding: 5px;
}

.day {
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
}

.day.available {
    background-color: var(--gris);
    color: var(--amarillo);
    font-weight: 900;
    font-size: 15px;
}

.day.available:hover {
    background-color: #c8e6c9;
}

.day.today {
    background-color: #bbdefb;
    font-weight: bold;
}

.day.selected {
    background-color: #64b5f6;
    color: white;
}

.time-slot.available {
    background-color: #e8f5e9;
    padding: 8px;
    margin: 3px;
    border-radius: 4px;
    cursor: pointer;
}

.time-slot.available:hover, .time-slot.selected {
    background-color: #2e7d32;
    color: white;
}

.no-slots {
    text-align: center;
    padding: 20px;
    color: #757575;
}






   .title-with-line {
            display: flex; /* Activa Flexbox */
            align-items: center; /* Centra verticalmente los elementos */
            text-align: center; /* Centra el texto */
            margin: 2rem 0; /* Espacio arriba y abajo */
    }

        /* La línea (creada con el pseudoelemento ::before) */
    .title-with-line::before {
            content: ''; /* Necesario para que el pseudoelemento se muestre */
            flex: 1; /* Hace que la línea ocupe todo el espacio disponible */
            border-bottom: 2px solid  var(--azul-principal); /* Estilo de la línea */
            margin-right: 1rem; /* Espacio entre la línea y el texto */
    }
        
        /* El título en sí */
    .title-with-line h2 {
            margin: 0; /* Quita el margen por defecto del h2 */
            white-space: nowrap; /* Evita que el texto se parta en varias líneas */
            font-weight: bold;
            color: #343a40;
    }


.container-login-card{
  margin-left: 0;
  margin-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5%;
}

.login-card{
	padding: 2%;
	width: 30%;
	border-radius: 7mm;
	background-color: white;
	border: 1px solid #e7e7e7;
	border-radius: 16px; /* aproximado */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.title-registro{
	font-size: 50px;
}

.input-registro{
    border-radius: 2mm!important;
    height: 45px;
    margin-top: 2%;
    margin-bottom: 2%;
    width: 100%;
    box-shadow: 5px 6px 9px -3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 5px 6px 9px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: 5px 6px 9px -3px rgba(0,0,0,0.2);
}
	
.input-registro::placeholder{
    font-weight: 600;
    font-size: 15px;
    color: black;
}

.card-contratacion{
     box-shadow: 5px 6px 9px -3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 5px 6px 9px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: 5px 6px 9px -3px rgba(0,0,0,0.2);
}


.Feautes {
    background-image: url('{{ asset("assets/doctorPet/fondos/paw.png") }}');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 30% auto; /* 25% del ancho, altura automática */
    position: relative;
    margin-bottom: 5%;
}



.card-home-vet-container {
    position: relative;
    padding-top: 40px; /* Espacio para el ícono */
    border: 2px solid #F4C542; /* Borde dorado como en la imagen */
    border-radius: 15px;
    padding: 60px 30px 30px 30px; /* Más padding arriba para el ícono */
    margin-bottom: 30px;
    background-color: #fff;
}

.card-icon {
    position: absolute;
    top: -25px; /* Posiciona el ícono en el borde superior */
    left: 50%; /* Centra horizontalmente */
    transform: translateX(-50%); /* Centra perfectamente */
    background-color: #fff; /* Fondo blanco para que se vea bien */
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Sombra sutil */
}

.card-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.card-home-vet-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}




/* iamgen dog */


.choose-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Sombra gris suave */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 15px; 
    
    /* CAMBIOS AQUÍ: */
    background-image: url('{{ asset("assets/doctorPet/fondos/image-video.png") }}'); /* Ajusta la ruta relativa según tu estructura de carpetas CSS */
    background-size: cover; /* Asegura que la imagen cubra todo el cuadro */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat;
}
.video-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen del perro - Posicionada en inferior derecho */
.dog-image {
    width: 30%;
    height: auto;
    position: absolute;
    bottom: -20%;
    right: 0;
    z-index: 1;
}

/* Contenedor del video - Centrado */
.promo-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Botón de play */
.video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8B7CF6, #A78BFA);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(139, 124, 246, 0.4);
}

.video i {
    font-size: 24px;
    margin-left: 3px;
}

/* Ondas animadas */
.waves-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.waves {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid #8B7CF6;
    border-radius: 50%;
    opacity: 0;
    animation: wave 2s infinite;
}

.wave-2 {
    animation-delay: 0.3s;
}

.wave-3 {
    animation-delay: 0.6s;
}

/* Animación de las ondas */
@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.imgserv{
    width: 15%;
    margin-bottom: 20px;
    margin-bottom: 20px;
}

.background-vet {
    background-repeat: no-repeat;
    background-position: 100% center; /* 85% desde la izquierda */
    background-size: contain;
    position: relative;
    overflow: hidden;
}





  /* Ajustes del navbar */
  .header-navbar {
	z-index: 999 !important;
    position: relative;
    padding: 0.6rem 1rem;
    color: white;
    background-color: #1c2b39 !important;
  }

  .header-navbar .navbar-brand img {
    max-height: 56px; /* ajusta si quieres mayor/menor */
    width: auto;
    display: block;
  }

  /* Centrar el nav exactamente en pantallas >= lg */
  @media (min-width: 992px) {
    .header-navbar .navbar-collapse {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 50%;
      transform: translate(-50%, -50%);
      display: block !important; /* forzar visible en escritorio */
    }
    .header-navbar .navbar-nav {
      display: flex;
      gap: 1.25rem;
    }
  }

  /* Espaciado y estilo de links */
  .header-navbar .nav-link {
    padding: 0.5rem 0.6rem;
    white-space: nowrap;
    color: white !important;
    transition: color 0.3s ease;
  }

  /* Hover en links principales */
  .header-navbar .nav-link:hover,
  .header-navbar .nav-link:focus {
    color: #858ff3 !important;
  }

  /* Hover en dropdown items */
  .dropdown-menu .dropdown-item:hover,
  .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #858ff3 !important;
  }

  /* Activo */
  .header-navbar .nav-link.active {
    color: #858ff3 !important;
  }

  #mainNav {
    font-size: 18px;
    font-weight: 900 !important;
  }



  .registrate-veterinario{
    padding:14px!important;
  }

 .botones-piso{
    width: 70%;
}



.content-primary{
    background-color: var(--gris);
}


.padding-vet{
   padding-left: 2.5rem;
   padding-right: 2.5rem;
}




@media (max-width: 412px) { 

    .doctor-avatar-img{
        width: 40%!important;
        height: auto!important;
        margin-bottom: 20px!important;
    }

    .password-group .toggle-password {
        top: 6px;
    }

    .availability-col { 
         margin-left: 10px;
         border-radius: 0.5rem; 
         width: 90vw;
     }

    .padding-vet{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .content-primary{
        background-color: white!important;
    }
    .opiniones{
        font-size: 20px;
    }
    .contenedor-detalles{
        margin:0;
        padding: 0;
    }
    .botones-piso{
		width: 100%;
	}
    .text-inicio{
        padding-top: -5%!important;
    }

   .first-card{
        margin-top: 117px!important;
    }
    
    p{
        font-size: 17px!important;
    }


    .text-inicio{
        line-height: 40px!important;
    }
   .social{
        text-align: center!important;
        padding-bottom: 25px!important;
    }
    .footer-left{
        margin-left: 0%!important;
    }

    .footer-derecha{
        display: inherit!important;
        font-size: 20px!important;
    }
    .footer-derecha li{
        padding-top: 7px!important;
        padding-bottom: 7px!important;
    }

    .footer-left h2{
        margin-bottom: 0!important;
    }

    .login-card{
        width: 80%;
    }
    .container-login-card{
        padding-top: 5%;
    }
    .schedule-inner{
         margin-top: 330px;
    }
     .button-slider-home {
        display: flex;
        flex-direction: column;
        gap: 10px; /* Espacio entre botones */
    }
    
    .button-slider-home a {
        width: 100%;
        text-align: center;
        margin-bottom: 0; /* Remover margin si lo tiene */
    }

    .img-services-circles{
        width: 50%;
        margin-bottom: 2%;
    }
    .text-services-text{
        margin-bottom: 6%;
    }
}  

@media (min-width: 429px) and (max-width: 767px) {


    .doctor-avatar-img{
        width: 40%!important;
        height: auto!important;
        margin-bottom: 20px!important;
    }
    .contenedor-detalles{
         margin:0;
        padding: 0;
    }

    .password-group .toggle-password {
        top: 6px;
    }



    .first-card{
        margin-top: 117px!important;
    }

    p{
        font-size: 15px!important;
    }
 .text-inicio{
        line-height: 40px!important;
    }
    .social{
        text-align: center!important;
        padding-bottom: 25px!important;
    }


    .footer-left{
        margin-left: 0%!important;
    }
    .footer-derecha{
        display: inherit!important;
        font-size: 20px!important;
    }
    .footer-derecha li{
        padding-top: 7px!important;
        padding-bottom: 7px!important;
    }
  .footer-left h2{
    margin-top: 25px!important;
        margin-bottom: 0!important;
    }
     .login-card{
        width: 70%;
    }    
     .schedule-inner{
        margin-top: 330px;
    }
     .button-slider-home {
        display: flex;
        flex-direction: column;
        gap: 10px; /* Espacio entre botones */
    }
    
    .button-slider-home a {
        width: 100%;
        text-align: center;
        margin-bottom: 0; /* Remover margin si lo tiene */
    }
     .img-services-circles{
        width: 40%;
        margin-bottom: 2%;
    }
      .text-services-text{
        margin-bottom: 6%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
       .login-card{
        width: 50%;
    }    
    .schedule-inner{
        margin-top: 20%;
    }
    .single-schedule{
        margin-top: 5%;
    }
}

@media (min-width: 992px) {
   
}

/* terminos y condiciones */
 .last-updated {
            text-align: center;
            font-style: italic;
            margin-bottom: 20px;
        }
        .highlight {
            background-color: #f8f9fa;
            padding: 15px;
            border-left: 4px solid #3498db;
            margin: 15px 0;
        }
        .definition-list {
            margin-left: 20px;
        }
        .definition-item {
            margin-bottom: 10px;
        }
        .definition-term {
            font-weight: bold;
        }

        .password-group {
    position: relative;
}

.password-group .form-control {
    border-right: none;
    border-radius: 12px 0 0 12px;
    height: 52px;
    padding-right: 50px;
}

.password-group .toggle-password {
    border: 1px solid #ced4da;
    border-left: none;
    border-radius: 0 12px 12px 0;
    background-color: #0f2230; /* el azul oscuro que usas */
    color: #fff;
    width: 52px;
    height: 52px;
    top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: background-color 0.2s ease;
}

.password-group .toggle-password:hover {
    background-color: #163041;
}

.password-group .toggle-password:focus {
    box-shadow: none;
}

.social-icon {
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
    margin-right: 3%;
}

.social-icon:hover {
    transform: scale(1.4);
    opacity: 0.8;
}

/* Colores oficiales */
.social-icon.facebook i {
    color: #1877F2;
    font-size: 25px!important;
}

.social-icon.twitter i {
    color: #1DA1F2;
    font-size: 25px!important;
}

.social-icon.instagram i {
    color: #E4405F;
    font-size: 25px!important;
}

.social-icon.linkedin i {
    color: #0077B5;
    font-size: 25px!important;
}

.social-icon.youtube i {
    color: #FF0000;
    font-size: 25px!important;
}

.social-icon.tiktok i {
    color: #000000;
    font-size: 25px!important;
}
