/* Google Font Import (예시) - CSS 파일 상단에 추가 */
@import url('https://fonts.googleapis.com/css2?family=Poor+Story&display=swap');

body {
    font-family: 'Poor Story', cursive; /* 귀여운 느낌의 웹 폰트 (Google Fonts 등에서 추가 필요) */
    background-color: #FFF0F5; /* 파스텔 톤 배경 */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #555;
}

.container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 20px; /* 둥근 모서리 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.cute-container {
    border: 3px dashed #FFC0CB; /* 점선 테두리 */
}

.cute-title {
    color: #FF69B4; /* 핫핑크 */
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cute-subtitle {
    color: #FFA07A; /* 라이트 살몬 */
    font-size: 1.8em;
    margin-bottom: 20px;
}

.cute-text {
    color: #777;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cute-text-small {
    font-size: 0.8em;
    color: #aaa;
    margin-top: 15px;
}

.cute-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 25px;
    object-fit: cover; /* 이미지 비율 유지 */
    border: 3px solid #FFDAB9; /* 피치 퍼프 */
}

.cute-button, .cute-button-secondary, .cute-button-small {
    display: inline-block;
    background-color: #FFB6C1; /* 라이트 핑크 */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px; /* 더 둥글게 */
    font-size: 1.1em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.cute-button:hover, .cute-button-secondary:hover, .cute-button-small:hover {
    background-color: #FF69B4; /* 호버 시 핫핑크 */
    transform: translateY(-2px); /* 살짝 위로 이동 */
}

.cute-button:active, .cute-button-secondary:active, .cute-button-small:active {
     transform: translateY(1px); /* 클릭 시 살짝 아래로 */
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.cute-button-secondary {
    background-color: #ADD8E6; /* 라이트 블루 */
}
.cute-button-secondary:hover {
    background-color: #87CEEB; /* 스카이 블루 */
}
.cute-button-secondary:disabled {
    background-color: #d3d3d3; /* 라이트 그레이 */
    cursor: not-allowed;
    opacity: 0.7;
}


.cute-button-small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin: 0 5px;
}


.cute-link {
    display: block;
    margin-top: 20px;
    color: #9370DB; /* 미디움 퍼플 */
    text-decoration: none;
    font-size: 0.9em;
}
.cute-link:hover {
    text-decoration: underline;
}

.cute-box {
    background-color: #FFFACD; /* 레몬 쉬폰 */
    border: 2px solid #FFEC8B; /* 라이트 옐로우 */
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.cute-box p {
    margin: 8px 0;
    color: #666;
}

.cute-checkbox-area {
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    align-items: center;
}

.cute-checkbox-area input[type="checkbox"] {
    margin-right: 10px;
    appearance: none; /* 기본 스타일 제거 */
    width: 20px;
    height: 20px;
    border: 2px solid #FFC0CB; /* 핑크 테두리 */
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    top: 2px;
}

.cute-checkbox-area input[type="checkbox"]:checked {
    background-color: #FFB6C1; /* 체크 시 핑크 배경 */
    border-color: #FF69B4;
}

.cute-checkbox-area input[type="checkbox"]:checked::after {
    content: '✔'; /* 체크 표시 */
    color: white;
    font-size: 14px;
    position: absolute;
    top: -2px;
    left: 3px;
}


.cute-checkbox-area label {
    color: #555;
    cursor: pointer;
}

.cute-button.disabled {
    background-color: #d3d3d3;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none; /* 클릭 이벤트 막기 */
}

.cute-progress-bar {
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #eee;
}

.cute-progress {
    height: 100%;
    background-color: #98FB98; /* 페일 그린 */
    border-radius: 10px 0 0 10px; /* 왼쪽만 둥글게 */
    transition: width 0.5s ease;
}

.cute-question {
    font-size: 1.3em;
    color: #6A5ACD; /* 슬레이트 블루 */
    margin-bottom: 20px;
    font-weight: bold;
}

.cute-options {
    display: flex;
    flex-direction: column;
    gap: 10px; /* 버튼 사이 간격 */
    margin-bottom: 25px;
}

.cute-option-button {
     background-color: #E6E6FA; /* 라벤더 */
     color: #483D8B; /* 다크 슬레이트 블루 */
     padding: 10px 15px;
     border: 1px solid #D8BFD8; /* 씨슬 */
     border-radius: 10px;
     cursor: pointer;
     transition: background-color 0.3s, border-color 0.3s;
     font-size: 1em;
}

.cute-option-button:hover {
    background-color: #D8BFD8;
    border-color: #BA55D3; /* 미디움 오키드 */
}

.cute-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cute-form label {
    display: block;
    margin-bottom: 5px;
    color: #8A2BE2; /* 블루 바이올렛 */
    text-align: left;
    font-weight: bold;
}

.cute-input, .cute-textarea {
    width: calc(100% - 24px); /* padding 고려 */
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #FFDAB9; /* 피치 퍼프 */
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit; /* body 폰트 상속 */
    background-color: #FFF8DC; /* 코르크실크 */
}

.cute-input:focus, .cute-textarea:focus {
    outline: none;
    border-color: #FFA07A; /* 라이트 살몬 */
    box-shadow: 0 0 5px rgba(255, 160, 122, 0.5);
}

.cute-textarea {
    resize: vertical; /* 세로 크기만 조절 가능 */
}


.cute-result-box {
    background-color: #F0FFF0; /* 허니듀 */
    border: 3px dashed #90EE90; /* 라이트 그린 */
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.cute-result-type {
    color: #3CB371; /* 미디움 씨 그린 */
    font-size: 1.6em;
    margin-bottom: 15px;
}

.highlight {
    background-color: #FFFFE0; /* 라이트 옐로우 배경 */
    padding: 2px 5px;
    border-radius: 5px;
}

.cute-button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
} 