body {
    font-family: 'Inter', sans-serif;
    height: auto;
    overflow: hidden;
}

.btn-modern-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    color: #0056b3; /* Color azul para que se parezca a un enlace */
    font-weight: bold;
    transition: color 0.3s ease-in-out; /* Transición para un efecto suave */
}

/* Opcional: Para evitar el subrayado en hover, puedes usar */
.btn-modern-link:hover {
    color: #1c2b71; 
    text-decoration: none;
}

.letra_0_85{
	font-size:0.85em;
}

.event-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

.container {
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin:0rem auto;
    border: 1px solid #000;
}
.card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#calendar-header {
    background-color: #000000;
    border-radius: 12px;
    color: white;
    padding: 10px 20px;
}
#month-year {
    font-size: 1.5rem;
    font-weight: bold;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}
.day-header {
    background-color: #f8f9fa;
    font-weight: bold;
    text-align: center;
    padding: 10px 5px;
    border-bottom: 1px solid #dee2e6;
}
.day-cell {
    border-radius: 5px;
    background-color: #ffffff;
    min-height: 50px;
    padding: 8px;
    position: relative;
    transition: transform 0.2s, background-color 0.2s;
}

.day-cell:hover {
    background-color: #eed;
	color:#333
}
.day-cell.current-day{
	border:solid 1px #8392d8;
}

 .has-event.day-cell:hover{
    background-color: #28a728; 
}
.has-event {
    background-color: #1fca1f;           
    cursor: pointer;
}
.has-event .day-number{
    color: #ddd;
}
.has-event:hover {
    transform: scale(1.02);
    z-index: 10;
}
.day-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #343a40;
}
.modal{
    overflow: hidden;
}
.modal-header {
    background-color: #000000;
    color: white;
    border-radius: 12px 12px 0 0;
}
.modal-header .btn-close{
    filter: invert(100%);
}
.modal-content {
    border-radius: 12px;
}
.modal-dialog {
    margin: 0 auto !important;
}
.event-details-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}
i.fa-solid{
   color: #fff;
}
@media (max-width: 768px) {
    .day-cell {
        min-height: 50px;
        padding: 5px;
    }
    .day-number {
        font-size: 1rem;
    }
	#month-year{
		    text-align: center;
    		font-size: 0.95em;
	}
}
