/* 리셋 CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none; /* 밑줄 제거 */
    color: inherit; /* 부모 요소의 색상을 상속받기 */
}

a:visited {
    color: inherit; /* 방문한 링크의 색상도 부모 요소의 색상을 상속받기 */
}

body {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing:-0.03em;
    background-color: #f4f4f4;
    color:#333
}


ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    margin: 0;
    padding: 0;
}
/* 테이블 설정 */
table {
    width: 100%;
    border-collapse: collapse;
}

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


/* 폼 설정 */

label, input, select, textarea {
    display: block;
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 5px;
    margin:3px;
    border: none;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
}
textarea {
    width: 100%;
    padding: 5px;
    margin:3px;
    border: none;
    border: 1px solid #ddd;
    background-color: transparent;
}
option{
    padding:0px;
    margin:0px;

}
input[type="text"] {
    padding: 5px;
    border-bottom: 1px solid #ccc;
}

input[type="submit"] {
    background-color: #616161;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #616161;
}
button {
    cursor: pointer;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
    outline: none;
    background: none;
    margin: 0;
}

/* select의 화살표를 커스텀 SVG로 설정 */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/img/select.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}
