.quitss {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.survey-container {
    max-width: 80%;
	line-height: 30px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.survey-question {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.survey-option {
    display: block;
    padding: 10px;
    background: #ececec;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.survey-option:hover {
    background: #d8d8d8;
}

input[type="radio"] {
    margin-right: 10px;
}

/* 기타 의견 입력 필드 스타일 */
.survey-comment textarea {
    width: 100%;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    resize: none;
    transition: 0.3s;
}

.survey-comment textarea:focus {
    border-color: #5cb85c;
    outline: none;
    box-shadow: 0px 0px 5px rgba(92, 184, 92, 0.5);
}