.model-zoo h1 {
    display: none;
}
.model-zoo h2.task-title {
    margin-top: 75px;
    font-size: 30px;
    text-align: center;
}
.model-zoo .table-container {
    margin-top: 36px;
}
.model-zoo table {
    width: 100%;
    border: none;
    border-collapse: collapse;
}
.model-zoo th {
    background-color: #D7F1FF;
    border: none;
    padding: 23.5px 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #20333B;
}
.model-zoo table thead tr th:last-child {
    padding-left: 16px;
    padding-right: 16px;
}
.model-zoo td {
    border: none;
    padding: 14px 0;
    font-size: 12px;
    text-align: center;
    color: #3D3D3D;
}
.model-zoo table tr:nth-child(even) {
    background-color: #F8F9FC;
}
.model-zoo table tbody tr td:nth-child(1) {
    padding-left: 10px;
    padding-right: 10px;
}
.model-zoo table a {
    color: #005EEB;
}


/* 기본 스타일 - 테이블이 컨테이너를 넘지 않도록 */
.model-zoo .table-container {
    width: 100%;
    overflow-y: hidden;        /* 세로 스크롤 절대 안 생기게 */
    overflow-x: auto;          /* 가로 스크롤 필요 시만 생성 */
    -webkit-overflow-scrolling: touch; /* 모바일에서 부드러운 스크롤 */
}

/* 테이블 자체는 최소 너비를 강제해서 내용이 줄어들지 않게 */
.model-zoo .table-container table {
    min-width: 1381px;         /* 1380px 이하에서 무조건 스크롤 생기게 하려면 1381px 이상 */
    width: 100%;
    border-collapse: collapse;
}

/* 1380px 초과일 때는 스크롤 없이 꽉 차게 */
@media screen and (min-width: 1381px) {
    .model-zoo .table-container {
        overflow-x: hidden;    /* 넓은 화면에선 가로 스크롤도 없애기 */
    }
    
    .model-zoo .table-container table {
        min-width: auto;       /* 최소 너비 제한 해제 */
    }
}

/* 선택사항: 스크롤바 이쁘게 (웹킷 브라우저) */
.model-zoo .table-container::-webkit-scrollbar {
    height: 10px;
}

.model-zoo .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.model-zoo .table-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 5px;
}

.model-zoo .table-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}