* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 语言切换按钮 */
.language-switch {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-switch:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.language-switch:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 头部布局 */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-left h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 同步按钮 */
.sync-button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.sync-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.sync-button:active {
    transform: translateY(0);
}

.sync-button.syncing {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 同步状态显示 */
.sync-status {
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    background: rgba(0,0,0,0.7);
    color: white;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sync-status.online {
    background: rgba(39,174,96,0.8);
}

.sync-status.offline {
    background: rgba(231,76,60,0.8);
}

/* 同步消息 */
.sync-message {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sync-message.sync-success {
    background: #27ae60;
}

.sync-message.sync-error {
    background: #e74c3c;
}

.sync-message.sync-warning {
    background: #f39c12;
}

.sync-message.sync-info {
    background: #3498db;
}

/* 同步设置面板 */
.sync-settings {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.sync-settings h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.sync-settings h4 {
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
}

.sync-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .sync-info {
        grid-template-columns: 1fr;
    }
}

.sync-status-panel, .sync-actions, .sync-settings-panel {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.status-item:last-child {
    border-bottom: none;
}

.status-item span:first-child {
    font-weight: 600;
    color: #495057;
}

.status-item span:last-child {
    color: #6c757d;
    font-family: monospace;
    font-size: 0.9rem;
}

.sync-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sync-actions button {
    width: 100%;
    justify-content: center;
}

.sync-settings-panel .form-group {
    margin-bottom: 15px;
}

.sync-settings-panel label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #495057;
}

.sync-settings-panel input[type="number"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.sync-settings-panel input[type="checkbox"] {
    margin-right: 8px;
}

.sync-settings-panel .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* 网络状态指示器 */
.network-online {
    color: #27ae60;
    font-weight: bold;
}

.network-offline {
    color: #e74c3c;
    font-weight: bold;
}

/* 同步动画 */
.syncing {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* 控制台面板样式 */
#console-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    z-index: 9999;
    box-shadow: -2px 0 10px rgba(0,0,0,0.5);
    display: none;
    overflow: hidden;
}

.console-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.console-header {
    background: #2d2d2d;
    padding: 10px 15px;
    border-bottom: 1px solid #3e3e3e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.console-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.console-controls {
    display: flex;
    gap: 5px;
}

.console-btn {
    background: #3e3e3e;
    color: #d4d4d4;
    border: 1px solid #555;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s;
}

.console-btn:hover {
    background: #4e4e4e;
    border-color: #666;
}

.console-tabs {
    display: flex;
    background: #252525;
    border-bottom: 1px solid #3e3e3e;
}

.console-tab {
    background: none;
    border: none;
    color: #858585;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 11px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.console-tab.active {
    color: #d4d4d4;
    border-bottom-color: #007acc;
    background: #2d2d2d;
}

.console-tab:hover {
    color: #ffffff;
    background: #2d2d2d;
}

.console-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.console-tab-content {
    flex: 1;
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.console-tab-content.active {
    display: flex;
}

/* 日志标签样式 */
.console-filters {
    padding: 10px;
    background: #2d2d2d;
    border-bottom: 1px solid #3e3e3e;
    display: flex;
    gap: 10px;
    align-items: center;
}

.console-filters input,
.console-filters select {
    background: #1e1e1e;
    color: #d4d4d4;
    border: 1px solid #3e3e3e;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.console-filters input {
    flex: 1;
}

.console-log-container {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.console-log {
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 4px;
    border-left: 3px solid #666;
    background: #2d2d2d;
    font-size: 11px;
    line-height: 1.4;
}

.console-log.error {
    border-left-color: #f48771;
    background: #2d1a1a;
}

.console-log.warn {
    border-left-color: #f9c74f;
    background: #2d2a1a;
}

.console-log.info {
    border-left-color: #569cd6;
    background: #1a2d3d;
}

.console-log.debug {
    border-left-color: #6a9955;
    background: #1a2d1a;
}

.log-timestamp {
    color: #858585;
    margin-right: 8px;
}

.log-level {
    color: #569cd6;
    margin-right: 8px;
    font-weight: bold;
    min-width: 50px;
    display: inline-block;
}

.log-source {
    color: #ce9178;
    margin-right: 8px;
    font-size: 10px;
}

.log-message {
    color: #d4d4d4;
    word-break: break-all;
}

.log-details {
    margin-top: 5px;
}

.log-toggle {
    background: #3e3e3e;
    color: #d4d4d4;
    border: 1px solid #555;
    padding: 2px 6px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 10px;
}

.log-toggle:hover {
    background: #4e4e4e;
}

.log-raw-data {
    margin-top: 5px;
    padding: 5px;
    background: #1e1e1e;
    border-radius: 3px;
    border: 1px solid #3e3e3e;
}

.log-raw-data pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
    font-size: 10px;
    color: #d4d4d4;
}

/* 系统信息样式 */
.system-info-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.system-section {
    margin-bottom: 20px;
}

.system-section h4 {
    color: #569cd6;
    margin-bottom: 10px;
    font-size: 12px;
    border-bottom: 1px solid #3e3e3e;
    padding-bottom: 5px;
}

.system-details {
    background: #2d2d2d;
    border-radius: 4px;
    padding: 10px;
}

.system-item {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.system-item strong {
    color: #9cdcfe;
    margin-right: 10px;
    min-width: 120px;
}

/* 网络请求样式 */
.network-requests-container {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.network-stats {
    background: #2d2d2d;
    padding: 10px;
    border-bottom: 1px solid #3e3e3e;
    display: flex;
    gap: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item span:first-child {
    color: #858585;
    margin-right: 10px;
}

.stat-item span:last-child {
    color: #d4d4d4;
    font-weight: bold;
}

.network-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.network-item {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 5px;
    background: #2d2d2d;
    border-radius: 4px;
    border-left: 3px solid #666;
    font-size: 11px;
}

.network-item.success {
    border-left-color: #6a9955;
}

.network-item.error {
    border-left-color: #f48771;
}

.network-method {
    color: #569cd6;
    font-weight: bold;
    min-width: 50px;
    margin-right: 10px;
}

.network-url {
    color: #d4d4d4;
    flex: 1;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.network-status {
    color: #9cdcfe;
    min-width: 40px;
    margin-right: 10px;
}

.network-duration {
    color: #b5cea8;
    min-width: 60px;
    text-align: right;
}

/* 性能监控样式 */
.performance-metrics-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.performance-section {
    margin-bottom: 20px;
}

.performance-section h4 {
    color: #569cd6;
    margin-bottom: 10px;
    font-size: 12px;
    border-bottom: 1px solid #3e3e3e;
    padding-bottom: 5px;
}

.performance-details {
    background: #2d2d2d;
    border-radius: 4px;
    padding: 10px;
}

.performance-item {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.performance-item strong {
    color: #9cdcfe;
}

/* 用户行为样式 */
.user-actions-container {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.actions-stats {
    background: #2d2d2d;
    padding: 10px;
    border-bottom: 1px solid #3e3e3e;
    display: flex;
    gap: 15px;
}

.actions-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.action-item {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 5px;
    background: #2d2d2d;
    border-radius: 4px;
    font-size: 11px;
}

.action-type {
    color: #569cd6;
    font-weight: bold;
    min-width: 60px;
    margin-right: 10px;
}

.action-target {
    color: #d4d4d4;
    flex: 1;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.action-time {
    color: #858585;
    min-width: 60px;
    text-align: right;
}

/* 响应式设计 */
@media (max-width: 768px) {
    #console-panel {
        width: 100%;
        height: 50vh;
        top: auto;
        bottom: 0;
        border-top: 2px solid #007acc;
    }
    
    .console-panel {
        height: 100%;
    }
    
    .console-tabs {
        overflow-x: auto;
    }
    
    .console-tab {
        white-space: nowrap;
        padding: 8px 10px;
    }
    
    .console-filters {
        flex-direction: column;
        gap: 5px;
    }
    
    .console-filters input,
    .console-filters select {
        width: 100%;
    }
}

/* 滚动条样式 */
.console-log-container::-webkit-scrollbar,
.network-list::-webkit-scrollbar,
.system-info-container::-webkit-scrollbar,
.performance-metrics-container::-webkit-scrollbar,
.actions-list::-webkit-scrollbar {
    width: 8px;
}

.console-log-container::-webkit-scrollbar-track,
.network-list::-webkit-scrollbar-track,
.system-info-container::-webkit-scrollbar-track,
.performance-metrics-container::-webkit-scrollbar-track,
.actions-list::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.console-log-container::-webkit-scrollbar-thumb,
.network-list::-webkit-scrollbar-thumb,
.system-info-container::-webkit-scrollbar-thumb,
.performance-metrics-container::-webkit-scrollbar-thumb,
.actions-list::-webkit-scrollbar-thumb {
    background: #3e3e3e;
    border-radius: 4px;
}

.console-log-container::-webkit-scrollbar-thumb:hover,
.network-list::-webkit-scrollbar-thumb:hover,
.system-info-container::-webkit-scrollbar-thumb:hover,
.performance-metrics-container::-webkit-scrollbar-thumb:hover,
.actions-list::-webkit-scrollbar-thumb:hover {
    background: #4e4e4e;
}

/* 动画效果 */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#console-panel {
    animation: slideIn 0.3s ease-out;
}

/* 控制台激活指示器 */
.console-indicator {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #007acc;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 10px;
    z-index: 9998;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.console-indicator:hover {
    opacity: 1;
}

.console-indicator.active {
    background: #6a9955;
}

/* 表单操作按钮区域 */
.form-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.form-actions .btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.form-actions .btn-secondary:hover {
    background-color: #5a6268;
}

.form-actions .btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.form-actions .btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn-secondary,
    .form-actions .btn-primary {
        width: 100%;
    }
}

/* 任务卡片样式 */
.task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.task-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-draft {
    background-color: #e9ecef;
    color: #495057;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-published {
    background-color: #d4edda;
    color: #155724;
}

.task-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.task-actions .btn-secondary,
.task-actions .btn-primary {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.task-actions .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.task-actions .btn-secondary:hover {
    background-color: #5a6268;
}

.task-actions .btn-primary {
    background-color: #007bff;
    color: white;
}

.task-actions .btn-primary:hover {
    background-color: #0056b3;
}

.task-actions .btn-delete-task {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.task-actions .btn-delete-task:hover {
    background-color: #dc3545;
    color: white;
}

@media (max-width: 768px) {
    .task-actions {
        flex-direction: column;
    }
    
    .task-actions .btn-secondary,
    .task-actions .btn-primary {
        width: 100%;
    }
}

/* 区域标题样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.section-header h3 {
    margin: 0;
    color: #333;
}

.section-header .btn-secondary {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background-color: #6c757d;
    color: white;
    transition: background-color 0.3s ease;
}

.section-header .btn-secondary:hover {
    background-color: #5a6268;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .section-header .btn-secondary {
        width: 100%;
    }
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-top h1 {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
}

/* 桌面端导航样式 */
.desktop-nav {
    display: flex;
    gap: 10px;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
}

.desktop-nav .nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.desktop-nav .nav-btn:hover {
    background: #e9ecef;
}

.desktop-nav .nav-btn.active {
    background: #3498db;
    color: white;
}

.desktop-nav .nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.desktop-nav .nav-text {
    font-size: 12px;
    font-weight: 500;
}

header h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-btn {
    padding: 10px 20px;
    border: none;
    background: #ecf0f1;
    color: #7f8c8d;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn.active,
.nav-btn:hover {
    background: #3498db;
    color: white;
}

/* 在移动端隐藏顶部导航 */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .swipe-indicator {
        display: none;
    }
}

.tab-content {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.time-slot input[type="time"] {
    width: auto;
}

.time-slot input[type="number"] {
    width: 100px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
    margin-right: 10px;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.hall-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-card span {
    font-size: 32px;
    font-weight: bold;
}

.task-item,
.booking-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 8px;
    border-left: 4px solid #3498db;
}

.task-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.task-item p {
    color: #7f8c8d;
    margin: 5px 0;
}

.service-actions {
    margin-bottom: 20px;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #f8f9fa;
    font-weight: bold;
    color: #555;
}

tr:hover {
    background: #f5f5f5;
}

.status-pending {
    color: #f39c12;
    font-weight: bold;
}

.status-confirmed {
    color: #27ae60;
    font-weight: bold;
}

.status-cancelled {
    color: #e74c3c;
    font-weight: bold;
}

.action-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    margin-right: 5px;
}

/* 动画效果 */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 通知样式 */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.notification-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.notification-error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.notification-info {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

/* 卡片动画 */
.task-item, .booking-item {
    animation: fadeIn 0.3s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.task-item:hover, .booking-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.task-item:active, .booking-item:active {
    transform: scale(0.98);
}

/* 按钮动画 */
.btn-primary, .btn-secondary, .action-btn {
    transition: all 0.2s ease;
}

.btn-primary:hover, .btn-secondary:hover, .action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:active, .btn-secondary:active, .action-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 统计卡片动画 */
.stat-card {
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: scale(1.02);
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.confirm-btn {
    background: #27ae60;
    color: white;
}

.cancel-btn {
    background: #e74c3c;
    color: white;
}

/* 底部导航栏样式 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* 在桌面端隐藏底部导航栏 */
@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
    
    /* 桌面端恢复原来的padding */
    .container {
        padding-bottom: 20px;
    }
    
    /* 桌面端显示顶部导航 */
    .desktop-nav {
        display: flex;
    }
    
    /* 桌面端布局优化 */
    .header-top {
        justify-content: space-between;
        align-items: center;
    }
    
    .header-top h1 {
        font-size: 28px;
    }
    
    /* 桌面端容器优化 */
    .container {
        max-width: 1400px;
        padding: 30px;
    }
    
    /* 桌面端表单布局优化 */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    /* 桌面端按钮优化 */
    .btn-primary,
    .btn-secondary {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    /* 桌面端任务卡片优化 */
    .task-item {
        padding: 20px;
        margin-bottom: 16px;
        border-radius: 12px;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
    }
    
    .task-item:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }
    
    .task-title {
        font-size: 18px;
        font-weight: 600;
    }
    
    .task-meta {
        font-size: 14px;
    }
    
    /* 桌面端任务大厅网格布局 */
    #taskListFlat {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    
    /* 桌面端表单布局优化 */
    .publish-form {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .datetime-inputs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .group-selection {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 20px;
        align-items: end;
    }
    
    /* 桌面端表格优化 */
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 12px 16px;
    }
    
    /* 桌面端模态框优化 */
    .modal-content {
        padding: 40px;
        max-width: 800px;
    }
    
    .modal-content h3 {
        font-size: 24px;
    }
    
    /* 桌面端客服界面优化 */
    .service-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .service-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .service-user {
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .service-role {
        background: #3498db;
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
    }
    
    .service-buttons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    /* 桌面端搜索和筛选优化 */
    .search-filter {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .search-filter input,
    .search-filter select {
        padding: 12px 16px;
        font-size: 14px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }
    
    /* 桌面端统计卡片优化 */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-card {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    .stat-value {
        font-size: 24px;
        font-weight: 600;
        color: #3498db;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 14px;
        color: #6c757d;
    }
    
    /* 桌面端页面标题优化 */
    .page-header {
        text-align: left;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e9ecef;
    }
    
    .page-header h2 {
        font-size: 28px;
        color: #2c3e50;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .page-header .page-description {
        font-size: 16px;
        color: #6c757d;
        margin: 0;
        line-height: 1.5;
    }
}

/* 在移动端隐藏顶部导航 */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .header-top {
        justify-content: center;
        text-align: center;
    }
    
    .header-top h1 {
        font-size: 20px;
    }
    
    /* 移动端页面标题优化 */
    .page-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .page-header h2 {
        font-size: 20px;
        color: #2c3e50;
        margin-bottom: 5px;
    }
    
    .page-header .page-description {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }
}
    
    .tab-content {
        min-height: auto;
    }
}

.bottom-nav .nav-btn {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.bottom-nav .nav-btn.active {
    color: #3498db;
    background: transparent;
}

.bottom-nav .nav-btn:active {
    transform: scale(0.95);
}

.bottom-nav .nav-icon {
    font-size: 18px;
    line-height: 1;
}

.bottom-nav .nav-text {
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
}

/* 调整内容区域，避免被底部导航栏遮挡 */
.container {
    padding-bottom: 80px; /* 为底部导航栏留出空间 */
}

.tab-content {
    min-height: calc(100vh - 160px); /* 减去header和底部导航栏的高度 */
}

/* 手机端优化 */
@media (max-width: 768px) {
    /* 基础布局优化 */
    body {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .container {
        padding: 10px;
        max-width: 100%;
        min-height: 100vh;
    }
    
    header {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    header h1 {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    /* 导航优化 */
    nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-btn {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .nav-btn:active {
        transform: scale(0.98);
    }
    
    /* 表单优化 */
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 4px;
        font-weight: 500;
        color: #555;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
        border: 1px solid #ddd;
        transition: border-color 0.2s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    }
    
    /* 群数选择优化 */
    .group-selection {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .quantity-input {
        min-width: 100%;
    }
    
    .group-select,
    .quantity-input input {
        font-size: 14px;
        padding: 12px;
        height: 48px;
    }
    
    /* 时间选择优化 */
    .datetime-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .time-slot {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .time-slot input {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        height: 48px;
        border-radius: 8px;
    }
    
    /* 统计卡片优化 */
    .hall-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .stat-card {
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.2s ease;
    }
    
    .stat-card:active {
        transform: scale(0.98);
    }
    
    .stat-card h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .stat-card span {
        font-size: 24px;
        font-weight: bold;
    }
    
    /* 任务卡片优化 */
    .task-item,
    .booking-item {
        padding: 10px;
        margin-bottom: 6px;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        transition: all 0.2s ease;
    }
    
    .task-item:active,
    .booking-item:active {
        transform: scale(0.99);
    }
    
    .task-item h4 {
        font-size: 14px;
        margin-bottom: 6px;
        color: #2c3e50;
    }
    
    .task-item p {
        font-size: 12px;
        margin: 4px 0;
        color: #666;
    }
    
    /* 按钮优化 */
    .btn-primary,
    .btn-secondary,
    .action-btn {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 8px;
        width: 100%;
        margin: 6px 0;
        font-weight: 500;
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .action-btn:active {
        transform: scale(0.96);
    }
    
    /* 预约表单优化 */
    .booking-form {
        background: #f8f9fa;
        padding: 16px;
        border-radius: 12px;
        margin-top: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    /* 搜索过滤优化 */
    .search-filter {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    /* 表格优化 */
    .table-container {
        overflow-x: auto;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    
    table {
        font-size: 12px;
        min-width: 600px;
    }
    
    th,
    td {
        padding: 8px 6px;
        font-size: 11px;
        text-align: left;
    }
    
    /* 操作按钮优化 */
    .action-btn {
        padding: 6px 10px;
        font-size: 10px;
        margin: 2px;
        border-radius: 4px;
        width: auto;
    }
    
    /* 通知优化 */
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 14px 16px;
        font-size: 13px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    /* 模态框优化 */
    .modal-content {
        padding: 20px;
        margin: 20px;
        width: calc(100% - 40px);
        max-height: calc(100vh - 40px);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-item {
        padding: 16px;
        border-radius: 8px;
        transition: transform 0.2s ease;
    }
    
    .stat-item:active {
        transform: scale(0.96);
    }
    
    .stat-item h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .stat-item p {
        font-size: 18px;
        font-weight: bold;
        margin: 0;
    }
    
    /* 标签页内容优化 */
    .tab-content {
        padding: 15px;
        border-radius: 12px;
        min-height: calc(100vh - 200px);
    }
    
    .tab-content h2 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        text-align: center;
    }
    
    /* 防止横向滚动 */
    body {
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .container {
        overflow-x: hidden;
    }
    
    /* 触摸滚动优化 */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* 输入框光标样式 */
    input, textarea, select {
        caret-color: #3498db;
    }
    
    /* 选择器优化 */
    select {
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 0.5rem center;
        background-repeat: no-repeat;
        background-size: 1.5em 1.5em;
        padding-right: 2.5rem;
    }
    
    /* 语言切换 */
    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .language-switch {
        display: flex;
        gap: 5px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        border: 1px solid #ddd;
        background: white;
        color: #666;
        border-radius: 4px;
        cursor: pointer;
        font-size: 12px;
        transition: all 0.2s ease;
    }
    
    .lang-btn.active {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }
    
    .lang-btn:hover {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }
    
    /* 滑动指示器 */
    .swipe-indicator {
        text-align: center;
        color: #999;
        font-size: 11px;
        margin-top: 10px;
        opacity: 0.6;
    }
}

/* 群数选择样式 */
.group-selection {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
}

.group-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s ease;
}

.group-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.quantity-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
}

.quantity-input label {
    font-weight: 500;
    color: #495057;
    font-size: 14px;
}

.quantity-input input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.quantity-input input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.total-groups-display {
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    animation: fadeIn 0.3s ease;
    text-align: center;
}

.total-groups-display span {
    font-size: 16px;
}

/* 时间范围紧凑模式 */
.time-range-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-range-row {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 32px;
}

.time-range-label {
    min-width: 54px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    flex-shrink: 0;
}

.time-range-inputs {
    display: flex;
    gap: 12px;
    flex: 1;
}

.time-input {
    height: 32px;
    font-size: 13px;
    padding: 0 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease;
    flex: 1;
    min-width: 0;
}

.time-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.time-input:hover {
    border-color: #bbb;
}

.time-range-error {
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
    color: #495057;
    font-size: 14px;
}

.input-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* 文本域样式 */
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* 所有任务区域 */
.all-tasks {
    margin-top: 30px;
}

.all-tasks h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

#allTaskList {
    transition: opacity 0.3s ease;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .datetime-inputs {
        grid-template-columns: 1fr;
    }
    
    .group-selection {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quantity-input {
        min-width: 100%;
    }
    
    .group-select {
        font-size: 14px;
        padding: 10px;
    }
    
    .quantity-input input {
        font-size: 14px;
        padding: 10px;
    }
}

/* 搜索和过滤区域 */
.search-filter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* 统计模态框 */
.statistics-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-item h4 {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-item p {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* 预约进度条样式 */
.progress-container {
    margin: 10px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 5px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-fill.warning {
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.progress-fill.danger {
    background: linear-gradient(90deg, #dc3545, #e83e8c);
}

/* 个人中心页面样式 */
.profile-search {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.profile-search .form-group {
    margin-bottom: 0;
}

.profile-search input {
    margin-bottom: 15px;
}

.profile-search button {
    width: 100%;
}

.profile-results {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.profile-stats {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.booking-item {
    border-left: 4px solid #17a2b8;
}

.booking-item.confirmed {
    border-left-color: #28a745;
}

.booking-item.pending {
    border-left-color: #ffc107;
}

.booking-item.cancelled {
    border-left-color: #dc3545;
}

.booking-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
}

/* 紧凑型任务卡片样式 */
.task-card-compact {
    background: white;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.task-card-compact:active {
    transform: scale(0.98);
}

.task-card-compact.expanded {
    margin-bottom: 8px;
}

/* 顶部信息行 */
.task-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 12px;
}

.task-id {
    font-weight: 600;
    color: #333;
}

.task-status-badge {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    margin-left: 8px;
}

.status-available {
    background: #e3f2fd;
    color: #1976d2;
}

.status-full {
    background: #f5f5f5;
    color: #666;
}

.task-progress-percent {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

/* 关键指标区域 */
.task-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 6px;
}

.task-remaining {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.task-booking-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #666;
}

.task-booking-info .icon {
    font-size: 12px;
}

/* 紧凑型进度条 */
.task-progress-compact {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.task-progress-fill-compact {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* 折叠区域 */
.task-collapse {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    font-size: 11px;
    color: #666;
}

.task-collapse-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.task-collapse-item .icon {
    font-size: 12px;
    color: #999;
}

.task-collapse-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #3498db;
    font-size: 11px;
    cursor: pointer;
    margin-top: 6px;
    user-select: none;
}

.task-collapse-toggle .icon {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.task-collapse-toggle.expanded .icon {
    transform: rotate(180deg);
}

/* 密度开关 */
.density-toggle {
    position: fixed;
    top: 70px;
    right: 10px;
    z-index: 1001;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.density-toggle .icon {
    font-size: 14px;
}

/* 密度模式切换 */
body.dense-mode .task-item {
    display: none;
}

body.dense-mode .task-card-compact {
    display: block;
}

body:not(.dense-mode) .task-card-compact {
    display: none;
}

/* 任务大厅控制区域 */
.hall-controls {
    margin: 16px 0;
    text-align: right;
}

.hall-controls .btn-secondary {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
}

/* 文本颜色样式 */
.text-success {
    color: #27ae60;
    font-weight: 600;
}

.text-danger {
    color: #e74c3c;
    font-weight: 600;
}

.text-warning {
    color: #f39c12;
    font-weight: 600;
}

/* 紧凑型任务卡片 - 图标样式 */
.task-icon {
    margin-right: 4px;
    font-size: 14px;
}

.task-number {
    font-weight: 600;
    color: #2c3e50;
}

.status-icon {
    margin-right: 4px;
    font-size: 12px;
}

.status-text {
    font-size: 11px;
    font-weight: 600;
}

/* 紧凑型任务卡片 - 度量项优化 */
.metric-label {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 500;
}

.metric-value {
    font-size: 12px;
    color: #2c3e50;
    font-weight: 600;
}

/* 详情标签样式 */
.detail-label {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 600;
    margin-right: 8px;
}

.detail-value {
    font-size: 12px;
    color: #2c3e50;
    word-break: break-word;
}

/* 扁平紧凑列表样式 */
.task-list-container {
    height: calc(100vh - 280px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #f5f5f5;
}

/* 吸顶筛选条 */
.sticky-filter-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-tabs {
    display: flex;
    gap: 8px;
}

.filter-tab {
    padding: 6px 16px;
    border: none;
    background: #f5f5f5;
    border-radius: 16px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab.active {
    background: #ff4757;
    color: white;
}

.filter-actions {
    display: flex;
    gap: 8px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border: 1px solid #e5e5e5;
    background: white;
    border-radius: 6px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: #ff4757;
    color: #ff4757;
}

.filter-icon {
    font-size: 14px;
}

/* 任务列表项 */
.task-list-flat {
    padding: 8px 0;
}

.task-list-item {
    background: white;
    margin: 0 16px 8px;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.task-list-item:active {
    transform: scale(0.98);
    background: #f8f9fa;
}

.task-list-item:hover {
    border-color: #ff4757;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.1);
}

/* 任务内容区域 */
.task-content {
    flex: 1;
    min-width: 0;
    padding-right: 16px;
}

/* 任务标题 */
.task-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 任务元信息 */
.task-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.task-meta-item {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.task-meta-icon {
    font-size: 12px;
}

/* 任务标签 */
.task-tags {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.task-tag {
    padding: 2px 8px;
    background: #f0f0f0;
    border-radius: 10px;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

.task-tag.status-available {
    background: #e8f5e8;
    color: #27ae60;
}

.task-tag.status-urgent {
    background: #fff3cd;
    color: #f39c12;
}

.task-tag.status-full {
    background: #f8d7da;
    color: #e74c3c;
}

/* 进度显示 */
.task-progress {
    min-width: 80px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.progress-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.progress-stat {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
}

.stat-label {
    color: #666;
    font-weight: 400;
}

.stat-value {
    font-weight: 700;
    color: #333;
}

.progress-bar-container {
    width: 60px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #3498db;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 10px;
    color: #666;
    font-weight: 400;
}

/* 客服登录界面 */
.service-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.service-login-modal {
    background: white;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-header h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.login-header p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.login-form .form-group {
    margin-bottom: 16px;
}

.login-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.login-form input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.login-form input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.login-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.login-actions button {
    flex: 1;
    height: 40px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-actions .btn-primary {
    background: #3498db;
    color: white;
}

.login-actions .btn-primary:hover {
    background: #2980b9;
}

.login-actions .btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.login-actions .btn-secondary:hover {
    background: #e9ecef;
}

.login-error {
    margin-top: 12px;
    font-size: 12px;
    color: #e74c3c;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 客服页面头部 */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-user {
    font-weight: 600;
    color: #333;
}

.service-role {
    font-size: 12px;
    color: #666;
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
}

.btn-logout {
    padding: 6px 12px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-logout:hover {
    background: #c82333;
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 底部统计信息 */
.hall-stats-bottom {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 12px 16px;
    display: flex;
    justify-content: space-around;
    z-index: 50;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: #999;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* 加载更多指示器 */
.loading-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    color: #999;
    font-size: 12px;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ff4757;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 任务详情模态框 */
.task-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.task-detail-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.detail-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.detail-close {
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.detail-close:hover {
    background: #e5e5e5;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.detail-section-content {
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
}

.detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
}

.detail-action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.detail-action-btn.primary {
    background: #ff4757;
    color: white;
}

.detail-action-btn.secondary {
    background: #f5f5f5;
    color: #666;
}

.detail-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 筛选选项模态框 */
.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.filter-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px;
    animation: slideUp 0.3s ease;
}

.filter-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.filter-option:last-child {
    border-bottom: none;
}

.filter-option-label {
    font-size: 14px;
    color: #2c3e50;
}

.filter-option-value {
    font-size: 14px;
    color: #666;
}

.filter-actions-modal {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.filter-reset-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #e5e5e5;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.filter-confirm-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: #ff4757;
    border-radius: 8px;
    font-size: 14px;
    color: white;
    cursor: pointer;
}

/* 选中任务信息显示 */
.selected-task-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.selected-task-info.highlight {
    background: #fff3cd;
    border-color: #ffeaa7;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.selected-task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #e9ecef;
    border-bottom: 1px solid #dee2e6;
}

.selected-task-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.btn-clear-selection {
    width: 24px;
    height: 24px;
    border: none;
    background: #6c757d;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
}

.btn-clear-selection:hover {
    background: #5a6268;
    transform: scale(1.1);
}

.selected-task-details {
    padding: 12px 16px;
}

.task-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.task-detail-item:last-child {
    margin-bottom: 0;
}

.task-detail-item .detail-label {
    color: #6c757d;
    font-weight: 500;
    min-width: 80px;
}

.task-detail-item .detail-value {
    color: #2c3e50;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

/* 轻量化预约区域 */
.booking-compact {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
}

.booking-compact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.booking-task-select {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 200px;
}

.booking-task-select .icon {
    font-size: 12px;
    color: #666;
}

.booking-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.booking-stepper button {
    background: #f8f9fa;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 14px;
}

.booking-stepper button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.booking-stepper input {
    border: none;
    padding: 4px 8px;
    width: 40px;
    text-align: center;
    font-size: 13px;
}

.booking-submit-compact {
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.booking-submit-compact:hover {
    background: #2980b9;
}

/* 行动面板 */
.action-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    max-height: 70vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.action-sheet.show {
    transform: translateY(0);
}

.action-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.action-sheet-title {
    font-size: 16px;
    font-weight: 600;
}

.action-sheet-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

.action-sheet-content {
    padding: 16px;
}

.action-sheet-option {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.action-sheet-option:hover {
    background: #f8f9fa;
}

.action-sheet-option:last-child {
    margin-bottom: 0;
}

.action-sheet-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.action-sheet-mask.show {
    opacity: 1;
    visibility: visible;
}

.booking-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-available {
    background-color: #d4edda;
    color: #155724;
}

.status-partial {
    background-color: #fff3cd;
    color: #856404;
}

.status-full {
    background-color: #f8d7da;
    color: #721c24;
}

.remaining-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.remaining-count {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
}

/* 响应式设计优化 */
@media (max-width: 768px) {
    .search-filter {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .booking-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .progress-bar {
        height: 6px;
    }
}

/* ActionSheet 补充样式 */
.action-sheet-body {
    padding: 16px;
    max-height: 50vh;
    overflow-y: auto;
}

.action-sheet-footer {
    padding: 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* 紧凑按钮样式 */
.btn-compact {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.btn-compact-primary {
    background: #3498db;
    color: white;
}

.btn-compact-primary:hover {
    background: #2980b9;
}

.btn-compact-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-compact-secondary:hover {
    background: #d5dbdb;
}

/* 预约表单样式 */
.booking-compact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-info {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    color: #666;
    font-size: 14px;
}

.info-value {
    font-weight: 500;
    color: #2c3e50;
}

/* 步进器样式 */
.stepper-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.stepper-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.stepper-btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
}

.stepper input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: text;
}

.stepper input::placeholder {
    color: #999;
    font-size: 14px;
}

.stepper input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-group-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-compact label {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group-compact input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.form-group-compact input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}