body {
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.container {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
}

h1 {
    color: #333;
    font-size: 24px; /* 글자 크기 확대 */
}

.dropdown-section, .details-section {
    padding: 15px;
    margin-top: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

label {
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px; /* 글자 크기 확대 */
}

select, button {
    width: 100%;
    padding: 14px; /* 패딩 확대 */
    margin-top: 10px; /* 간격 확대 */
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 18px; /* 글자 크기 확대 */
}

select:focus {
    border-color: #007bff;
}

.details-section h2 {
    color: #555;
    font-size: 20px; /* 글자 크기 확대 */
}

.details-section .details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.details-section .details-table th, 
.details-section .details-table td {
    padding: 10px; /* 패딩 확대 */
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px; /* 글자 크기 확대 */
    color: #666;
}

.details-section .details-table th {
    background-color: #006400;
    color: #fff;
    font-weight: bold;
}

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

button {
    width: 48%;
    padding: 14px 15px; /* 패딩 확대 */
    background-color: #009b00;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px; /* 글자 크기 확대 */
}

button:hover {
    background-color: #005a00;
}

@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .dropdown-section, .details-section {
        padding: 15px;
    }

    select, button {
        width: 100%;
        padding: 14px; /* 패딩 확대 */
        font-size: 14px; /* 글자 크기 확대 */
        margin-top: 10px; /* 간격 확대 */
    }

    .details-section .details-table th, 
    .details-section .details-table td {
        font-size: 14px; /* 글자 크기 확대 */
        padding: 10px; /* 패딩 확대 */
    }

    .button-group {
        flex-direction: row;
    }

    .button-group button {
        width: 48%;
    }
}

.image-container {
    border: 1px solid #ccc; /* 회색 테두리 추가 */
    padding: 10px; /* 내부 여백 추가 */
    margin-bottom: 20px; /* 각 이미지 컨테이너 사이의 마진 추가 */
    background-color: #f8f8f8; /* 배경색 추가로 구분 강화 */
    border-radius: 8px; /* 모서리를 둥글게 */
}

.image-container img {
    max-width: 100%; /* 이미지가 컨테이너 너비를 초과하지 않도록 */
    height: auto; /* 이미지의 높이가 자동으로 조정되도록 */
    display: block; /* 이미지를 블록 요소로 만들어 줄바꿈 */
    margin: 0 auto; /* 상하 마진 없이 좌우 자동 마진 */
}
