
	/* Reduce altura de celdas de días */
	.fc .fc-daygrid-day-frame {
		padding: 4px 2px;
		min-height: 60px; /* puedes ajustar este valor */
	}

	/* Reduce tamaño del texto del día */
	.fc .fc-daygrid-day-number {
		font-size: 0.75rem;
		font-weight: 500;
	}

	/* Ajusta el tamaño del título del mes */
	.fc .fc-toolbar-title {
		font-size: 1.1rem;
	}

	/* Ajusta eventos dentro del día */
	.fc-daygrid-event {
		font-size: 0.70rem;
		padding: 1px 4px;
		border-radius: 4px;
		line-height: 1.2;
	}
	
.img-jugador {
  width: 128px;
  height: 128px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
img.jugador {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    object-fit: cover;
}
/* =======================================
   Menú Principal MxBets - custom.css
   Sin recuadro - Colores claros visibles
   ======================================= */

/* Enlaces principales */
#menu-apuestas .nav-link {
    color: #5c5f62; /* Gris medio legible */
    font-weight: 600;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    transition: color 0.2s ease;
}

/* Hover del enlace principal */
#menu-apuestas .nav-link:hover {
    color: #2c6fbb;
    background-color: transparent !important;
}

/* Cuando el dropdown está abierto: SIN recuadro, SIN fondo */
#menu-apuestas .dropdown.show > .nav-link.dropdown-toggle,
#menu-apuestas .nav-item.dropdown:hover > .nav-link.dropdown-toggle {
    color: #2c6fbb !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

/* Menú desplegable */
#menu-apuestas .dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.25rem 0;
    box-shadow: none !important; /* Elimina cualquier recuadro tipo sombra */
}

/* Ítems del submenú */
#menu-apuestas .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover sobre ítems del submenú */
#menu-apuestas .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #2c6fbb;
}
/* =======================================
   Modal Scrolling - Solución para modales con mucho contenido
   ======================================= */

/* Asegura que el modal body tenga altura máxima y permite scroll */
.modal-body {
    max-height: calc(100vh - 200px); /* Deja espacio para header y footer */
    overflow-y: auto; /* Permite scroll vertical */
    overflow-x: hidden; /* Evita scroll horizontal */
}

/* Estilo de scrollbar personalizado para mejor visualización */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Para pantallas pequeñas (dispositivos móviles) */
@media (max-width: 576px) {
    .modal-body {
        max-height: calc(100vh - 150px); /* Más restrictivo en móviles */
        padding: 1rem 0.75rem !important;
    }
    
    .modal-content {
        border-radius: 0.5rem;
    }
}

/* Para pantallas medianas (tablets) */
@media (min-width: 577px) and (max-width: 992px) {
    .modal-body {
        max-height: calc(100vh - 180px);
    }
}

/* Para pantallas grandes (desktop) */
@media (min-width: 993px) {
    .modal-body {
        max-height: calc(100vh - 220px);
    }
}

/* Asegura comportamiento correcto en modal-dialog-scrollable */
.modal-dialog-scrollable {
    max-height: calc(100vh - 100px);
}

/* Mejora visualización en pantallas medianas */
@media (max-width: 768px) {
    .modal-dialog.modal-lg {
        max-width: 90vw;
    }
}

/* Mejora del modal footer nativo de Bootstrap */
.modal-footer {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

/* Asegura que los botones del footer sean accesibles */
.modal-footer .btn {
    min-width: 80px;
}
