.gsc-tabs .tabs_wrapper.tabs_vertical .nav-tabs {
    width: 25%;
    float: left;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15%;
    flex: 0 0 0%;
    max-width: 50%;
    background: transparent;
    border: 0px;
    border-right: 0;
    margin-right:100px;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 10px; 
    margin: 20px auto;
    padding: 10px;
    border-radius: 5px;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #d6d6d6; /* Background for each item */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.document-item:hover {
    background-color: #cfcfcf; /* Slightly darker gray on hover */
}

.document-link {
    text-decoration: none;
    font-size: 16px;
    color: #000; /* Black text */
    font-weight: bold;
}

.document-link:hover {
    text-decoration: underline;
}

.document-icon {
    width: 25px; /* Size of the PDF icon */
    height: 25px;
}

.gsc-tabs .tabs_wrapper.tabs_vertical .tab-content .tab-pane {
    background: #fff;
    padding: 30px;
    border: 1px solid #dee2e6;
    border-radius: 15px;
}


.gsc-tabs .tabs_wrapper.tabs_horizontal {
    display: flex;
    flex-direction: column-reverse; 
}

.gsc-tabs .nav-tabs {
    display: flex;
    justify-content: center; 
    margin-top: 20px; 
}

.gsc-tabs .nav-tabs li {
    margin: 0 5px; 
}

.gsc-tabs .nav-tabs a {
    text-decoration: none;
    padding: 10px 15px;
    color: #007bff; 
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #f8f9fa; 
}

.gsc-tabs .nav-tabs a:hover {
    background-color: #e2e6ea;
    color: #0056b3; 
}

.gsc-tabs .nav-tabs .active a {
    background-color: #007bff;
    
    color: #fff;
	border: 2px solid #44D1D6;
}

.gsc-tabs .tabs_wrapper.tabs_horizontal .tab-content .tab-pane {
    background: #fff;
    padding: 20px;
}

.gsc-tabs .tabs_wrapper.tabs_horizontal .nav-tabs > li a:after {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #44D1D6;
    z-index: -1;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.gsc-tabs .tabs_wrapper.tabs_horizontal .nav-tabs > li a:hover, .gsc-tabs .tabs_wrapper.tabs_horizontal .nav-tabs > li a.active {
    color: #000;
}

.gsc-tabs .nav-tabs a {
    text-decoration: none;
    padding: 10px 15px;
    color: #000; 
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #f8f9fa;
}
