/* 日期容器样式 */
.date-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* 日期数字样式 */
.date {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    background-color: #4CAF50; /* 绿色背景 */
    padding: 15px 10px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 5px;
    border-radius: 8px 8px 0 0;
}

/* 月份样式 */
.month {
    font-size: 0.9rem;
    color: #666;
    background-color: #f8f9fa;
    padding: 10px 10px;
    text-align: center;
    width: 100%;
    border-radius: 0 0 8px 8px;
}

/* 悬停效果 */
.date-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .date {
        font-size: 1.5rem;
        padding: 10px 5px;
    }
    
    .month {
        font-size: 0.8rem;
        padding: 5px 5px;
    }
}

/* 不同颜色主题选项 */

/* 蓝色主题 */
.date-wrap.blue-theme {
    background-color: #2196F3;
}

.date.blue-theme {
    background-color: #2196F3;
}

.month.blue-theme {
    background-color: #e3f2fd;
}

/* 红色主题 */
.date-wrap.red-theme {
    background-color: #F44336;
}

.date.red-theme {
    background-color: #F44336;
}

.month.red-theme {
    background-color: #ffebee;
}

/* 紫色主题 */
.date-wrap.purple-theme {
    background-color: #9C27B0;
}

.date.purple-theme {
    background-color: #9C27B0;
}

.month.purple-theme {
    background-color: #f3e5f5;
}

/* 橙色主题 */
.date-wrap.orange-theme {
    background-color: #FF9800;
}

.date.orange-theme {
    background-color: #FF9800;
}

.month.orange-theme {
    background-color: #fff3e0;
}