body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    font-size: 16px; /* 기본 폰트 크기 설정 */
}

#container {
    width: 90%;
    /* max-width: 800px; */
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* input[type="text"] 스타일 */
input[type="text"] {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

/* select 요소의 스타일 */
select {
    width: auto; /* 너비를 내용에 맞게 자동 조정 */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

input[type="text"]:focus, select:focus {
    border-color: #4CAF50;
    outline: none;
}

.small-textbox {
    width: 5%;
}

.large-textbox {
    width: 100%;
    max-width: 300px;
}

p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

/* 반응형 디자인을 위한 미디어 쿼리 */
@media (max-width: 600px) {
    #container {
        width: 95%;
        padding: 10px;
    }

    input[type="text"], select {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }
}