/* 全局字体和背景设置 */
body {
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    text-align: center;
}

/* 日历容器样式 */
#calendar-container {
    width: 800px;
    margin: 50px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
}

/* 日历头部样式 */
#calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* 上一个月和下一个月按钮样式 */
#prevMonth,
#nextMonth {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

/* 登录注册样式 */
.LaR {
    margin-top: 20px;
}

.LaR a {
    color: #007BFF;
    text-decoration: none;
    cursor: pointer;
}

.LaR a:hover {
    text-decoration: underline;
}


.lar_b button {
    width: 100px;
    padding: 0.75rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lar_b button:hover{
    background-color: #0056b3;
}

/* 按钮悬停效果 */
#prevMonth:hover,
#nextMonth:hover {
    transform: scale(1.1);
}

/* 日历标题样式 */
#calendar-title {
    font-size: 24px;
    font-weight: bold;
}

/* 日历表格样式 */
#calendar {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

/* 日历表头样式 */
#calendar th {
    background-color: #69aff9;
    font-weight: normal;
    padding: 10px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

/* 日历单元格样式 */
#calendar td {
    padding: 12px;
    border: 1px solid #ccc;
    color: #333;
    transition: background-color 0.3s ease;
}

/* 日历单元格默认样式 */
#calendar td.default {
    background-color: #fff;
}

/* 鼠标悬停样式 */
#calendar td:hover {
    background-color: #D3D3D3;
}

/* 当天日期样式 */
#calendar td.today {
    background-color: #007bff;
    font-weight: bold;
    color: #fff;
}

/* 点击后样式 */
#calendar td.clicked {
    background-color: #FFA500;
}

/* 没有数字单元格样式 */
#calendar td.empty {
    background-color: #e9e9e9;
    color: #fff;
}

/* 列表样式 */
#cleaning-info {
    margin-top: 30px;
    font-size: 16px;
}

#cleaning-info p {
    line-height: 1.8;
}

#cleaner-name {
    font-size: 20px;
    font-weight: bold;
    color: #007BFF;
    margin-top: 10px;
}

/* 注意事项样式 */
.Notes {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

.Notes h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.Notes p {
    text-align: justify;
    line-height: 1.6;
    padding: 0 150px;
}


/* 页脚样式 */
.footer {
    margin-top: 40px;
    padding: 10px;
    background-color: #E6E6E6;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 12px;
    color: #333;
}

/* 页脚链接样式 */
.footer a {
    color: #007BFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
