/* styles.css */
.tab-container {
    display: flex;
}

.tabs {
    width: 20%;
    background-color: transparent;
}

.tabs ul {
    list-style-type: none;
    padding: 0;
}

.tabs li {
    padding: 10px;
    border-bottom: 1px solid #CCCCCC;
    border-left: 5px solid #EEEEEE;
    background-color: #FBFBFB;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 18px;
}

.tabs li i.fa {
    float: right;
    font-size: 20px;
}

.tabs li.active {
    background-color: #1A7AFF;
    border-left: 5px solid #0869f1;
    color: white;
}

.content {
    width: 80%;
    padding: 20px;
    border-left: 1px solid #ccc;
}

.content .tab-title {
    font-size: 2.5em;
}

.content .tab-title,
.content .tab-content {
    display: none;
}

.content .tab-title.active,
.content .tab-content.active {
    display: block;
}

.content .tab-content a {
    display: block;
    margin-top: 30px;
    line-height: 20px;
    transition: all 360ms;
    position: relative;
    left: 0px;
}

.content .tab-content .date {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
}

.content .tab-content .date::after {
    content: '/';
    padding: 0 20px;
    font-weight: 400;
}

.content .tab-content .t {
    font-size: 14px;
    color: #666;
    margin-left: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
