/* CSS para el calendario doble */
.calendar-container {
background: white;
    /* border: 2px solid #4ECDC4; */
    border-radius: 8px;
    /* padding: 20px; */
    width: 100%;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
}

.calendar-header {
    margin-bottom: 20px;
}

.calendar-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.calendar-subtitle {
    color: #666;
    font-size: 14px;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nav-button {
    width: 40px;
    height: 40px;
    border: none;
    background: #333;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background: #555;
}

.nav-button:active {
    background: #222;
}

.months-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
	width: 100%;
}

.month-container {
    display: flex;
    flex-direction: column;
}

.month-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.day-header {
    text-align: center;
    font-weight: 500;
    padding: 8px 4px;
    font-size: 14px;
    color: #666;
    /*background: #f8f8f8;*/
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.2s;
    min-height: 40px;
	border-radius:45%;
}

.day-cell:hover {
    background-color: #ffffff;
	border:solid 1px #000000;
	border-radius:50%;
}

.day-cell.other-month {
    color: #ccc;
    cursor: default;
}

.day-cell.other-month:hover {
    background-color: transparent;
}

.day-cell.selected {
    background-color: #333;
    color: white;
    border-radius: 50%;
}

.day-cell.range {
    background-color: #E8E8E8;
    color: #333;
	border-radius: 50%;
}

.day-cell.range.first {
    background-color: #333;
    color: white;
    border-radius: 50%;
}

.day-cell.today {
    border: 2px solid #333;
    border-radius: 50%;
}

.price-tag {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #4ECDC4;
    color: white;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .months-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calendar-container {
        padding: 15px;
    }
}