/**
 * ReviewMoa Main CSS Entry Point
 * 모든 CSS 파일을 임포트하는 메인 파일
 * 
 * Structure:
 * 1. Core - 변수, 베이스, 유틸리티
 * 2. Components - 재사용 가능한 컴포넌트
 * 3. Pages - 페이지별 스타일
 * 4. Themes - 테마 관련
 * 5. Vendor - 외부 라이브러리
 */


/* 폰트 로드 */
@import url('font.css');

/* 컬러 시스템 로드 */
@import url('color.css');

/* Loading - 로딩 & 스피너 */
@import url('loading.css');


/* DataTable - 데이터테이블 스타일 */
@import url('datatable.css');

/*!* Analytics Redesign - 분석 대시보드 *!*/
/*@import url('components/analytics-redesign.css');*/

/* =================================================================
   3. Feature Styles - 기능별 스타일
   ================================================================= */

/* Event Features - 이벤트 기능 */
@import url('features/event/event-page-styles.css');
@import url('features/event/event-components.css');
@import url('features/event/event-analytics-advanced.css');
@import url('features/event/event-charts.css');
@import url('features/event/event-loading-error.css');

/* Store Features - 스토어 기능 */
@import url('features/store/store-components.css');



/* =================================================================
   Legacy Compatibility - 기존 코드 호환성
   ================================================================= */



/* 추가 글로벌 스타일 */
body {
    font-family: 'Pretendard-Regular', sans-serif;
    word-break: break-all !important;
    color: #2c3e50;
}

input::placeholder,
textarea::placeholder {
    color: rgba(9, 30, 66, 0.45) !important;
    font-size: inherit;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


/*!* =================================================================*/
/*   White Box - 기본 흰색 박스*/
/*   ================================================================= *!*/

.white-box {
    background-color: #ffffff;
    border: 1px solid rgba(222, 226, 230, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: auto;
    position: relative;
    margin-bottom: 1.3rem;
}

@media(max-width:486px){
    .white-box {
        padding: 1rem;
    }
}


