/*공통 in parkingService*/
.parking-service-wapper .text-color-red{
    color: red;
}

.parking-service-wapper .text-color-blue{
    color: blue;
}
.parking-service-wapper .text-under-line{
    text-decoration: underline;
}

.parking-service-wapper{
    width: 85%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
}
.web-parking-service{
    margin: 30px 0 50px 0;
}

.web-parking-service>button{
    width: 40%;
    height: 50px;
    background-color:paleturquoise;
    color: black;
    box-shadow: 0 8px #6DDFDF;

}
.web-parking-service>button:hover{
    background-color: #87ECEC;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.parking-system{
    margin-bottom: 100px;
}
.parking-system .system-title{
    margin-bottom: 50px;
}

.etc-contents{
    margin: 30px 80px;
    text-align: left;
}


/* table 전체의 스타일을 정의 */
table {
    width: 90%;
    margin: auto;
    border-collapse: collapse; /* 셀 간의 간격을 제거하여 하나의 테두리처럼 보이게 함 */
}
table thead{
    background-color: paleturquoise;
}
/* 표 머리글(th)와 데이터 셀(td)의 스타일을 정의 */
th, td {
    border: 1px solid black; /* 각 셀에 검은색 테두리 설정 */
    padding: 10px; /* 셀 내부 여백 설정 */
    text-align: center; /* 셀 내의 텍스트를 중앙 정렬 */
    vertical-align: middle;
}
/* 표 머리글(th) 셀의 스타일을 정의 */
th {
    background-color: #f2f2f2; /* 머리글 셀의 배경색을 연회색으로 설정 */
}

table .left-align{
    text-align: left;
}

@media screen and (max-width: 490px){
    table {
        width: 100%;
        margin: auto;
        border-collapse: collapse; /* 셀 간의 간격을 제거하여 하나의 테두리처럼 보이게 함 */
    }
    .etc-contents {
        margin: 30px 0px;
    }
    .parking-service-wapper{
        font-size: 12px;
    }
    .web-parking-service>button{
       font-size: 15px;
        padding: 15px;
        width: 100%;
    }
}


