/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #FFFFFF 0%, #FEFEFE 30%, #FDFDFD 70%, #FBFBFB 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(233, 142, 39, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(218, 165, 32, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(144, 238, 144, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 25s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 30%, #e98e27 100%);
    color: #2c2c2c;
    padding: 1rem 0;
    box-shadow: 0 4px 25px rgba(233, 142, 39, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid rgba(233, 142, 39, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 6px 30px rgba(233, 142, 39, 0.35);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(135deg, #e98e27 0%, #ff8c00 50%, #ff7f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(233, 142, 39, 0.2);
    transition: all 0.3s ease;
    font-weight: 800;
}

.nav-brand h1:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(233, 142, 39, 0.4));
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.85;
    color: #e98e27;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 142, 39, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    background: linear-gradient(135deg, rgba(233, 142, 39, 0.15) 0%, rgba(255, 140, 0, 0.15) 100%);
    transform: translateY(-3px);
    color: #cc6c1d;
    box-shadow: 0 4px 15px rgba(233, 142, 39, 0.3);
}

.admin-link {
    background: linear-gradient(135deg, #e98e27 0%, #ff8c00 100%);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(233, 142, 39, 0.4);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.admin-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.admin-link:hover::after {
    width: 300px;
    height: 300px;
}

.admin-link:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #e98e27 100%);
    box-shadow: 0 6px 20px rgba(233, 142, 39, 0.5);
    transform: translateY(-4px);
}

/* 内容区域 */
.content-section {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
}

/* 门店查询区域特别美化 - 简化灰棕版本 */
#storesSection {
    position: relative;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 246, 244, 0.8) 50%,
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: 40px;
    padding: 4rem 0;
    margin: 2rem 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

#storesSection::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, 
        rgba(233, 142, 39, 0.02) 0%,
        rgba(139, 129, 122, 0.015) 50%,
        rgba(233, 142, 39, 0.02) 100%);
    border-radius: 50px;
    z-index: -1;
}

#storesSection .container {
    position: relative;
    z-index: 2;
}

.content-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, 
        #cc6c1d 0%, 
        #A0522D 25%,
        #e98e27 50%,
        #ecc38c 75%,
        #cc6c1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(204, 108, 29, 0.15);
    position: relative;
    letter-spacing: 1px;
}

.content-section h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, 
        rgba(233, 142, 39, 0.04) 0%,
        rgba(160, 82, 45, 0.03) 30%,
        rgba(139, 129, 122, 0.02) 60%,
        transparent 80%);
    border-radius: 50%;
    z-index: -1;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, 
        #e98e27 0%, 
        #A0522D 35%,
        #dbb37f 70%,
        #e98e27 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(233, 142, 39, 0.2);
}

/* 搜索框 - 简化灰棕色版本 */
.search-box {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 246, 244, 0.96) 35%,
        rgba(139, 129, 122, 0.08) 70%,
        rgba(255, 255, 255, 0.98) 100%);
    padding: 2.8rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 45px rgba(233, 142, 39, 0.12),
        0 12px 30px rgba(139, 129, 122, 0.08),
        0 8px 20px rgba(160, 82, 45, 0.06),
        inset 0 2px 4px rgba(255, 255, 255, 0.95),
        inset 0 -1px 3px rgba(139, 129, 122, 0.05);
    display: flex;
    gap: 1.8rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    border: 3px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.search-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(233, 142, 39, 0.25) 0%,
        rgba(139, 129, 122, 0.2) 40%,
        rgba(160, 82, 45, 0.15) 70%,
        rgba(233, 142, 39, 0.2) 100%);
    border-radius: 32px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

.search-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.15) 30%,
        rgba(233, 142, 39, 0.12) 50%,
        rgba(255, 165, 0, 0.1) 70%,
        transparent);
    animation: searchBoxShine 5s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { 
        background: linear-gradient(135deg, 
            rgba(233, 142, 39, 0.25) 0%,
            rgba(139, 129, 122, 0.2) 50%,
            rgba(233, 142, 39, 0.25) 100%);
    }
    50% { 
        background: linear-gradient(135deg, 
            rgba(160, 82, 45, 0.3) 0%,
            rgba(139, 129, 122, 0.25) 30%,
            rgba(233, 142, 39, 0.2) 70%,
            rgba(160, 82, 45, 0.3) 100%);
    }
}

@keyframes searchBoxShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* 表单控件样式已移至components.css统一管理 */

/* 按钮样式已移至components.css统一管理 */

/* 门店详情 - 清晰多彩版本 */
.store-details {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 253, 250, 0.96) 25%,
        rgba(248, 248, 255, 0.95) 50%,
        rgba(250, 255, 250, 0.96) 75%,
        rgba(255, 255, 255, 0.98) 100%);
    padding: 3rem;
    border-radius: 28px;
    margin-bottom: 3.5rem;
    box-shadow: 
        0 20px 45px rgba(233, 142, 39, 0.12),
        0 15px 35px rgba(218, 165, 32, 0.08),
        0 10px 25px rgba(144, 238, 144, 0.06),
        0 5px 15px rgba(135, 206, 235, 0.04),
        inset 0 2px 4px rgba(255, 255, 255, 0.95),
        inset 0 -1px 3px rgba(233, 142, 39, 0.02);
    border: 3px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.store-details::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(233, 142, 39, 0.2) 0%,
        rgba(218, 165, 32, 0.15) 20%,
        rgba(255, 215, 0, 0.1) 40%,
        rgba(144, 238, 144, 0.1) 60%,
        rgba(135, 206, 235, 0.15) 80%,
        rgba(233, 142, 39, 0.2) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.6;
}

.store-details:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(233, 142, 39, 0.18),
        0 18px 40px rgba(218, 165, 32, 0.12),
        0 12px 30px rgba(144, 238, 144, 0.08),
        0 8px 20px rgba(135, 206, 235, 0.06),
        inset 0 3px 6px rgba(255, 255, 255, 0.98),
        inset 0 -2px 4px rgba(233, 142, 39, 0.04);
}

.store-details h3 {
    color: #cc6c1d;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 1.4rem;
}

.store-details p {
    color: #4a4a4a;
    line-height: 1.8;
    font-weight: 500;
}

/* 技师网格 */
.therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.therapist-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.95) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(233, 142, 39, 0.15),
        0 4px 15px rgba(204, 108, 29, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    border: 2px solid rgba(233, 142, 39, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.therapist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e98e27 0%, #ff8c00 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.therapist-card:hover::before {
    transform: scaleX(1);
}

.therapist-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(233, 142, 39, 0.25),
        0 10px 25px rgba(204, 108, 29, 0.18);
    border-color: rgba(233, 142, 39, 0.4);
}

.therapist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.therapist-avatar-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.therapist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #e98e27 0%, #ff8c00 100%);
    border: 3px solid rgba(233, 142, 39, 0.3);
    box-shadow:
        0 4px 12px rgba(233, 142, 39, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.therapist-card:hover .therapist-avatar {
    border-color: rgba(233, 142, 39, 0.6);
    box-shadow:
        0 6px 18px rgba(233, 142, 39, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.therapist-name {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #cc6c1d 0%, #e98e27 50%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.therapist-position {
    color: #5a5a5a;
    font-weight: 600;
    margin-top: 0.3rem;
}

.therapist-gender {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.therapist-experience {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 50%, #DC143C 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
    font-weight: 700;
    transition: all 0.3s ease;
}

.therapist-experience:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 20, 60, 0.5);
    background: linear-gradient(135deg, #B22222 0%, #DC143C 50%, #B22222 100%);
}

.therapist-store {
    background: linear-gradient(135deg, rgba(176, 196, 222, 0.6) 0%, rgba(173, 216, 230, 0.7) 100%);
    color: #4682B4;
    margin-bottom: 1rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 196, 222, 0.3);
    box-shadow: 
        0 4px 15px rgba(176, 196, 222, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.7);
}

.therapist-specialties {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.specialty-tag {
    background: linear-gradient(135deg, rgba(176, 196, 222, 0.5) 0%, rgba(173, 216, 230, 0.6) 100%);
    color: #4682B4;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 2px solid rgba(176, 196, 222, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 2px 8px rgba(176, 196, 222, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.specialty-tag:hover {
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.7) 0%, rgba(176, 196, 222, 0.8) 100%);
    border-color: rgba(176, 196, 222, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(176, 196, 222, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    color: #2F4F4F;
}

.appointment-button {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.35);
    position: relative;
    overflow: hidden;
}

.appointment-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.appointment-button:hover::before {
    width: 300px;
    height: 300px;
}

.appointment-button:hover {
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.45);
}

/* 预约表单 */
.appointment-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(233, 142, 39, 0.15),
        0 5px 15px rgba(204, 108, 29, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(233, 142, 39, 0.2);
    backdrop-filter: blur(15px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #cc6c1d;
    font-weight: 700;
    font-size: 1.1rem;
}

/* 页脚 */
footer {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 30%, #e98e27 100%);
    color: #4a4a4a;
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    box-shadow: 0 -6px 25px rgba(233, 142, 39, 0.2);
    border-top: 3px solid rgba(233, 142, 39, 0.2);
}

footer p {
    margin: 0;
    opacity: 0.9;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .search-box {
        flex-direction: column;
        padding: 2rem;
    }

    .form-control {
        min-width: 100%;
    }

    .therapist-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .content-section {
        padding: 2rem 0;
    }

    .therapist-header {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }

    .therapist-avatar-wrapper {
        width: 100%;
    }

    .therapist-avatar {
        width: 60px;
        height: 60px;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }
}

/* 加载动画 */
.loading {
    text-align: center;
    padding: 3rem;
    color: #cc6c1d;
    font-weight: 700;
    font-size: 1.2rem;
}

/* 消息提示 */
.message {
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    backdrop-filter: blur(15px);
    border: 2px solid transparent;
}

.message.success {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.9) 0%, rgba(50, 205, 50, 0.9) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.35);
    border-color: rgba(34, 139, 34, 0.4);
}

.message.error {
    background: linear-gradient(135deg, rgba(233, 142, 39, 0.9) 0%, rgba(255, 140, 0, 0.9) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(233, 142, 39, 0.35);
    border-color: rgba(233, 142, 39, 0.4);
}

.therapist-card:hover .specialty-tag {
    background: linear-gradient(135deg, rgba(233, 142, 39, 0.3) 0%, rgba(255, 248, 240, 0.95) 100%);
    border-color: rgba(204, 108, 29, 0.6);
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 248, 240, 0.7);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e98e27 0%, #ff8c00 100%);
    border-radius: 6px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #e98e27 100%);
    box-shadow: 0 2px 8px rgba(233, 142, 39, 0.4);
}

/* 新增互动元素 */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(233, 142, 39, 0.06);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
}

/* 鼠标悬停光效 */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 142, 39, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glow-effect:hover::after {
    opacity: 1;
}

/* 预约列表样式 */
.appointments-list {
    margin-top: 2rem;
}

.appointment-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.appointment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e98e27 0%, #ff8c00 100%);
    transition: width 0.3s ease;
}

.appointment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 142, 39, 0.2);
}

.appointment-item:hover::before {
    width: 8px;
}

.appointment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.appointment-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 状态样式已移至 elderly-friendly.css 统一管理 */

.appointment-details {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.appointment-details strong {
    color: #e98e27;
    font-weight: 600;
}

.appointment-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
}

.btn-cancel {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cancel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn-cancel:hover::before {
    width: 200px;
    height: 200px;
}

.btn-cancel:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.empty-appointments {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.empty-appointments h3 {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.empty-appointments p {
    font-size: 1.1rem;
    line-height: 1.6;
}