/**
 * Common Styles
 * 공통 컴포넌트 스타일 (정보 아이템, 빈 상태 등)
 */

/* ===========================================
   정보 아이템 스타일
   =========================================== */

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--theme-item-bg);
    border-radius: 6px;
    border: 1px solid var(--theme-item-border);
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.info-item:hover {
    background-color: #f1f3f4;
    border-color: var(--theme-main-color);
}

.info-content {
    flex: 1;
    min-width: 0;
}

.info-label {
    font-size: var(--theme-font-size-body);
    color: var(--theme-info-text);
    font-weight: 400;
    font-family: var(--theme-font-normal);
}

.info-value {
    font-weight: 500;
    color: var(--theme-text-color);
    word-break: break-word;
    font-family: var(--theme-font-bold);
}

/* ===========================================
   빈 상태 스타일
   =========================================== */

.empty-state {
    text-align: center;
    padding: 2.5rem 1.25rem;
}

.empty-state h3 {
    font-family: var(--theme-font-bold);
    font-size: var(--theme-font-size-title);
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.empty-state p {
    font-family: var(--theme-font-normal);
    font-size: var(--theme-font-size-body);
    color: var(--theme-text-color);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===========================================
   공통 컴포넌트 반응형 디자인
   =========================================== */

@media (max-width: 768px) {
    .empty-state {
        padding: 2rem 1rem;
    }
    
    .empty-state h3 {
        font-size: var(--theme-font-size-subtitle);
    }
}

@media (max-width: 480px) {
    .empty-state {
        padding: 1.5rem 0.75rem;
    }
}
