body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
}

.form-group {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.form-group label {
    width: 100px;
    margin: 0;
}

.form-group input[type="text"],
.form-group select {
    padding: 8px;
    box-sizing: border-box;
    width: 100%;
}

#name {
    width: 200px;
}

#birthdate,
#birthtype {
    width: 120px;
}

#birthtime {
    width: 80px;
}

.form-group input[type="radio"] {
    margin-left: 5px;
    margin-right: 5px;
}

/* 특정 행 아래에 두꺼운 가로줄 추가 */
.thick-border-bottom {
    border-bottom: 4px solid black;
}


input[type="checkbox"] {
    margin-right: 5px;
}

button {
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

#dataOutput {
    margin-top: 20px;
    padding-top: 10px;
}

#responseOutput {
    display: none;
}

hr {
    border: 1px solid #ddd;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

td,
th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.big-text {
    font-size: 1.5em;
}

.large-title {
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
}

.info-text {
    margin-top: 10px;
    font-size: 1.2em;
}

.highlighted-column {
    background-color: #ffffcc; /* 연한 노란색 배경 */
    transition: background-color 0.3s; /* 색상이 변할 때 부드러운 전환 효과 */
}

@media (max-width: 600px) {
    .daewoon-table {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: column-reverse;
    }
    .daewoon-table table {
        width: 48%;
        margin-bottom: 20px;
    }
}
