body {
    background-color: #f8f9fa;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* 突出显示体检日期和地点 */
.form-control-static {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #07c160;
    margin-top: 5px;
}

.form-control-static strong {
    color: #07c160;
    font-size: 1.2em;
}

.date-selections {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.date-option {
    flex: 1 0 28%;
    border: 2px solid #ddd;
    padding: 12px 8px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-option:hover {
    border-color: #07c160;
    background-color: #f8fff8;
}

.date-option.selected {
    background-color: #07c160;
    color: white;
    border-color: #07c160;
}

.date-option label {
    cursor: pointer;
    margin: 0;
    font-size: 1.1em;
    font-weight: 500;
    display: block;
    width: 100%;
}

/* 调整备注文本框高度 */
#note {
    height: 60px; /* 减小备注框的高度 */
    min-height: 60px;
}

.reservation-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}
.header {
    text-align: center;
    margin-bottom: 30px;
}
.header img {
    width: 80px;
    height: 80px;
}
.form-group {
    margin-bottom: 20px;
}
.btn-primary {
    background-color: #07c160;
    border-color: #07c160;
    width: 100%;
}
.date-selections {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.date-option {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    flex: 1 0 28%;
}
.date-option.selected {
    background-color: #07c160;
    color: white;
    border-color: #07c160;
}
