/* =====================
   리포트 공통 스타일
   ===================== */

/* 리포트 컨테이너 */
#report-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

/* 로딩 표시 */
.report-loading,
.mobile-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    font-size: 1.1rem;
    color: #5f6368;
}

/* 텍스트 색상 */
.text-success {
    color: #34a853;
}

.text-danger {
    color: #ea4335;
}

.text-muted {
    color: #9aa0a6;
}

/* 빈 상태 */
.empty-state,
.mobile-empty {
    text-align: center;
    padding: 2rem;
    color: #9aa0a6;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* 버튼 스타일 */
.period-select,
.mobile-period-select {
    padding: 0.5rem 1rem;
    border: 1px solid #dadce0;
    border-radius: 8px;
    background: white;
    color: #202124;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-secondary {
    padding: 0.5rem 1rem;
    border: 1px solid #dadce0;
    border-radius: 8px;
    background: white;
    color: #202124;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #f1f3f4;
}

/* 프로그레스 바 공통 */
.level-progress-bar,
.mobile-progress-bar {
    width: 100%;
    height: 8px;
    background: #e8eaed;
    border-radius: 4px;
    overflow: hidden;
}

.level-progress-fill,
.mobile-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* 태그 스타일 */
.tag-name {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 숨김 상태 */
.hidden {
    display: none !important;
}
