.main-content .panel{
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
}

.page-header { 
    display:flex; 
    padding-bottom: 10px;
    justify-content: space-between;
    border-bottom: solid 1px rgba(34, 34, 34, 0.06);
}

.page-header .tabs{
    flex-grow: 1;
}

.tabs .btn { 
    color:#999; 
    padding:6px 12px; 
    border-radius:16px; 
    margin-right:10px; 
    font-size:24px;
    background: transparent;
    box-shadow: none;
}
.tabs .btn.active {
    color:#222;
    font-size:26px;
}

.search-area{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-area .switch-btn{
    border-radius: 8px;
    background-color: rgba(255, 136, 0, 0.04);
    color:#B36104;
    padding: 4px 8px 4px 8px;
    font-size: 18px !important;
}

.search-area .switch-btn>div{
    display: flex;
}

.search-area .search-box{
    border:solid 1px #FF7016;
    border-radius: 4px;
    
}

.search-area .search-box input{
    border:none;
    outline:none;
    background-color: transparent;
    color:rgba(61, 42, 31, 0.38);
    font-size:16px;
    padding: 8px 8px;
    flex-shrink: 0;
    min-width: 150px;
    box-sizing: border-box;
}
/* .search { margin-left:auto; position:relative; }
.search input { width:320px; height:36px; border:1px solid #eee; background:#fafafa; border-radius:18px; padding:0 14px 0 36px; outline:none; }
.search .icon { position:absolute; left:10px; top:50%; transform:translateY(-50%); color:#999; } */

.chips { 
    display:flex; 
    flex-wrap:wrap; 
    gap:16px;
    margin: 16px 0px;
}
.chips .chip { 
    background:#fff; 
    border:1px solid #E0E0E0; 
    padding:6px 10px; 
    border-radius:8px; 
    color:#222; 
    font-size:14px; 
}

.chips .chip.active{
    border:solid 1px #FF7016;
    background: rgba(255, 112, 22, 0.06);
    color:#FF7016;
}

.group { 
    background:#fff; 
    border-radius:16px; 
    margin-bottom:16px;
    padding: 20px;
}
.group-title {
    width:fit-content;
    font-size:22px;
    font-weight: 600;
    color:#222;
    padding:12px 0px; 
    font-weight:700; 
    display:flex; 
    align-items: flex-end;
}

.group-title .meta{
    color:#999;
    font-size:12px;
    margin-left:10px;
}

.group-title>div:first-child{
    color:inherit;
    position: relative;
    line-height: 1;
    text-indent: 14px;
}

.group-title>div:first-child::before{
    content:"";
    position: absolute;
    width:3px;
    height: 60%;
    top:55%;
    left:0px;
    transform: translateY(-50%);
    background-color: #FF7016;

}

.group-title>div:last-child{
    line-height: 1;
}
.majors {
    display: flex;
    align-items: flex-start;
    border-bottom:dashed 1px rgba(20, 38, 37, 0.1);
    padding: 16px 0px;
}

.group .majors:last-child{
    border-bottom:none !important;
}

.majors .major-name{
    font-size:16px;
    color:#222222;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    width:200px;
    flex-shrink: 0;
}

.majors .major-name .meta { 
    color:#999999; 
    font-size:12px;
    font-weight: 100;
}

.majors .lists{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-grow: 1;
    gap:16px;
}

.majors .lists .major{
    width:calc(25% - 16px);
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    color:#222;
    font-size:16px;
}

.majors .lists .major:hover{
    color: #FF7016;
}
.new-tab{
    display: flex;
}
.new-tab span{
    background: #fff;
    border: 1px solid #E0E0E0;
    padding: 6px 10px;
    border-radius: 8px;
    color: #222;
    font-size: 14px;
    margin-right: 10px;
}
.new-tab span:hover{
    cursor: pointer;
}
.chips .chip:hover{
    cursor: pointer;
}
.new-tab span.active{
    border: solid 1px #FF7016;
    background: rgba(255, 112, 22, 0.06);
    color: #FF7016;
}
