/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1faee;
}
::-webkit-scrollbar-thumb {
    background: #e63946;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c1121f;
}

/* 日历样式 */
.calendar-day {
    transition: all 0.3s ease;
}
.calendar-day:hover {
    transform: scale(1.1);
    z-index: 10;
}
.calendar-day.good {
    background-color: rgba(230, 57, 70, 0.2);
    border: 2px solid #e63946;
}
.calendar-day.best {
    background-color: rgba(230, 57, 70, 0.4);
    border: 2px solid #c1121f;
    font-weight: bold;
}

/* 加载动画 */
.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #e63946;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 底部固定菜单 */
.fixed-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* 自定义工具类 */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}
.gradient-bg {
    background: linear-gradient(135deg, #e63946 0%, #f1faee 100%);
}
.red-gradient {
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
}
.gold-gradient {
    background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
}