/* _common/components.css */
/* UI 컴포넌트 스타일 - appWebView.html 전용 */

/* === 기본 페이지 스타일 === */
body {
    margin: 0;
    padding: 20px;
    /* background: #1a1a1a; */
    background: #ffffff;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* === 버튼 컴포넌트 === */
.btn-middle {
    background: #33aa55;
    color: white;
    padding: 0px 8px;
    cursor: pointer;
    height: 30px;
    border-radius: 4px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    transition: all 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-middle:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-middle:active {
    transform: translateY(0);
    opacity: 0.9;
}

/* === 제목 컴포넌트 === */
h3 {
    color: #4CAF50;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: normal;
    font-size: 14px;
    margin: 0 0 8px;
}

/* === 모듈 컨테이너 === */
.module-container {
    background: #ffffff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 55;
    display: inline-block;
}

.module-container.compact {
    padding: 10px;
}

.module-container.spacious {
    padding: 20px;
}