.current-time-progress-component {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.time-header {
    margin-bottom: 16px;
}

.time-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.time-display {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.time-separator {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.time-seconds {
    font-size: 32px;
    font-weight: 500;
    opacity: 0.7;
}

.time-seconds-wrapper.hidden {
    display: none;
}

.date-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.date-text {
    font-size: 15px;
    color: var(--text-secondary);
}

.weekday-text {
    font-size: 15px;
    color: var(--theme-color);
    font-weight: 500;
    padding: 4px 12px;
    background: var(--color-primary-bg);
    border-radius: var(--border-radius-sm);
}

.progress-section {
    border-top: 1px solid var(--border-secondary);
    padding-top: 20px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 10px;
}

.progress-day-passed {
    color: var(--text-secondary);
}

.progress-day-remaining {
    color: var(--text-muted);
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar-track {
    flex: 1;
    height: 8px;
    background: var(--border-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
    background: var(--theme-color);
}

.progress-percentage {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 40px;
    text-align: right;
}

.progress-month-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.current-month {
    font-weight: 500;
    color: var(--text-tertiary);
}

/* 深色模式适配 */
html[data-theme="dark"] .current-time-progress-component {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .weekday-text {
    background: rgba(59, 130, 246, 0.15);
}

html[data-theme="dark"] .progress-bar-track {
    background: var(--bg-secondary);
}
