/* 日期选择器 */
	html{
min-width:1400px;
margin:0px auto;	
	
}

.calendar-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.calendar-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 350px;
    padding: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-title {
    font-weight: bold;
    font-size: 18px;
}

/* 通用按钮 */
.calendar-nav,
.calendar-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.calendar-nav {
    font-size: 18px;
    padding: 8px 12px;
}

.calendar-close-btn {
    font-size: 20px;
    color: #666;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.calendar-nav:hover,
.calendar-close-btn:hover {
    background-color: #f0f0f0;
}

.calendar-weekdays {
    display: flex;
    margin-bottom: 8px;
}

.weekday {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #999;
    padding: 8px 0;
}

.calendar-days {
    display: flex;
    flex-wrap: wrap;
}

.day {
    width: calc(100% / 7);
    text-align: center;
    padding: 8px 0;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.day:hover:not(.disabled) {
    background-color: #f0f0f0;
}

.day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.day.check-in, 
.day.check-out {
    background-color: #007bff;
    color: white;
}

.day.in-range {
    background-color: rgba(0, 123, 255, 0.1);
}

.calendar-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.calendar-close {
    background-color: #f0f0f0;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.calendar-close:hover {
    background-color: #e0e0e0;
}

/* 日期输入框 */
.date-input-wrapper {
    cursor: pointer;
}
