/**
 * 파일경로: /assets/css/ll-summary.css
 * 파일역할: C-다 요약(AI 회진) 전용 스타일 (Ver 2.1 Design)
 * * [기존 파일 전체 교체]
 */

/* Overlay Container */
.ll-summary-content {
    padding: 20px 16px;
    padding-bottom: 100px;
}

/* Main Summary Card */
.ll-summary-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Element */
.ll-summary-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(75, 123, 236, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

/* 1. Header (Mood & Date) */
.ll-sum-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.ll-sum-mood-icon {
    font-size: 42px;
    width: 64px; height: 64px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-sum-titles h3 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e272e;
}

.ll-sum-date {
    font-size: 14px;
    color: #808e9b;
}

/* 2. Content Blocks (Greeting / Fact / Advice) */
.ll-sum-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ll-sum-block {
    line-height: 1.6;
    font-size: 16px;
    color: #2f3640;
}

.ll-sum-block.greeting {
    font-weight: 600;
    color: #1e272e;
}

.ll-sum-block.fact {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 16px;
    border-left: 4px solid #4b7bec;
    font-size: 15px;
}

.ll-sum-block.advice {
    color: #57606f;
    font-size: 15px;
}

.ll-sum-highlight {
    color: #4b7bec;
    font-weight: 700;
}

/* 3. Schedule & Memo Section */
.ll-sum-extra {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.ll-sum-tag {
    display: inline-block;
    background: #eef2f5;
    color: #57606f;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-weight: 600;
}

.ll-sum-note-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

/* 4. Actions & TTS */
.ll-sum-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ll-btn-voice-toggle {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #1e272e;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.ll-btn-voice-toggle.playing {
    background: #e3f2fd;
    border-color: #4b7bec;
    color: #4b7bec;
}

.ll-btn-report-link {
    background: #4b7bec;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(75, 123, 236, 0.3);
}
.ll-btn-report-link:active { transform: scale(0.98); }
.ll-btn-report-link span.arrow { font-size: 18px; }

/* Loading */
.ll-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #999;
}