@charset "UTF-8";

.sidemenu{
	width: 100%;
    height: 46px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.infoList{
	padding: 0;
}

.infoDetail{
	margin-bottom: 15px;
	font-size: 17px;
}

.listText{
	margin-left: 5px;
}

.tabMenu {
    display: flex;
    list-style-type: none;
    padding: 0;

}

.tabButton {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: none;
    outline: none;
    transition: background-color 0.3s;
    width: 450px;
    text-align: center;
    margin: 0 auto;
    font-family:Arial, sans-serif;
}

.tabButton:hover {
    background-color: #e0e0e0;
}

.tabButton.active {
    background-color: #ccc;
}

.tabContent {
    display: none;
}

.tabContent.active {
    display: block;
}


