.tab {
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    border-left: 1px solid #ccc;
	width:100%;
}

.tab button {
    background-color: inherit;
    float: left;
    border: 1px solid #ccc;
    border-left: none;
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.3s;
    font-size: 17px;
    width: auto;
}

.tab button:hover {
    background-color: #e6e7eb;
}

.tab button.active {
    background-color: white;
    border-bottom: none;
    padding: 12px 25px;
}

.tabcontent {
    display: none;
    padding: 0px;
    border: none;
}

.tabcontent table {
    border-collapse: collapse;
    width: 100%;
}

.tabcontent th, .tabcontent td {
    border: 1px solid #ccc!important;
    text-align: left;
    padding: 8px !important;
}

/* 첫 번째 및 마지막 td와 th의 좌우 테두리 제거 */
.tabcontent tr th:first-child, .tabcontent tr td:first-child {
    border-left: none !important;
}

.tabcontent tr th:last-child, .tabcontent tr td:last-child {
    border-right: none !important;
}

.tabcontent th {
    background-color: #F6F7FB;
    text-align: center; /* 테이블 헤더를 중앙으로 정렬 */
}

/* 1, 4, 5번째 컬럼의 텍스트 중앙 정렬 */
.tabcontent tr td:nth-child(1), 
.tabcontent tr td:nth-child(4), 
.tabcontent tr td:nth-child(5) {
    text-align: center;
}

/* 첫 번째 컬럼의 너비 설정 */
.tabcontent th:nth-child(1), .tabcontent td:nth-child(1) {
    width: 7%;
}

/* 두 번째 컬럼의 너비 설정 */
.tabcontent th:nth-child(2), .tabcontent td:nth-child(2) {
    width: auto;
}

/* 세 번째 컬럼의 너비 설정 */
.tabcontent th:nth-child(3), .tabcontent td:nth-child(3) {
    width: 8%;
}

/* 네 번째 컬럼의 너비 설정 */
.tabcontent th:nth-child(4), .tabcontent td:nth-child(4) {
    width: 5%;
}

/* 다섯 번째 컬럼의 너비 설정 */
.tabcontent th:nth-child(5), .tabcontent td:nth-child(5) {
    width: 20%;
}


.tabcontent table button{
    border: 1px solid #ccc; /* 테두리 추가 */
    background-color: #FEFEFE; /* 회색 배경 */
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2); /* 그림자 추가 */
    padding: 1px 12px; /* 버튼 내부 여백 */
    cursor: pointer; /* 마우스 오버 시 커서 변경 */
    transition: background-color 0.3s; /* 배경 색상 변경에 대한 트랜지션 추가 */
}

.tag {
    padding: 2px 6px;
    border-radius: 1px;
    color: #fff;
    font-size: 0.75em;
    margin-right: 0px;
    text-align: center;
}

.tag.수시 {
    background-color: #007bff; /* 파란색 */
}

.tag.경력 {
    background-color: #28a745; /* 녹색 */
}

.tag.신입 {
    background-color: #ee6060; /* 빨간색 */
}

.status-tag {
    display: inline-block;
    padding: 3px 7px;
    border-radius: 1px;
    color: #fff;
    text-align: center;
    font-size: 0.875em;
}

.status-tag.진행중 {
    background-color: #4CAF50; /* 녹색 */
}

.status-tag.진행전 {
    background-color: #2196F3; /* 파란색 */
}

.status-tag.종료 {
    background-color: #f44336; /* 빨간색 */
}
