.tt-container-fb08914a {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: Poppins;
}

.tt-tabs-header {
    display: flex;
    flex-wrap: wrap;
}

.tt-tab-link {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #D5D8FF;
    border-bottom: 1px solid #B3B7F6;
    padding: 20px 20px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 100px;
	border-radius: 0;
}

.tt-tab-link.active {
    background: #ffffff;
    color: #4c1d95;
    border: 1px solid #B3B7F6;
	border-bottom: none;
    position: relative;
}

.tt-tab-link:hover {
	border-color: #B3B7F6;
}

.tt-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
}

.tt-tabs-content {
    background: #fff;
	border: #B3B7F6 solid;
    border-width: 0 1px 1px 1px;
}

.tt-tab-pane {
    display: none;
    animation: fadeEffect 0.5s;
}

.tt-tab-pane.active {
    display: block;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Accordion Styles */
.tt-accordion {
    display: flex;
    flex-direction: column;
	padding: 0 2em;
	margin-top: 1em;
	margin-bottom: 3em;
}

.tt-acc-item {
    padding: 15px 0;
    border-bottom: 1px solid #B3B7F6;
}

.tt-acc-header {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    cursor: pointer;
}

.tt-acc-icon {
    margin-right: 10px;
    color: #B3B7F6;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.tt-icon-plus,
.tt-icon-minus {
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tt-icon-minus {
    display: none;
}

.tt-acc-item.open .tt-icon-plus {
    display: none;
}

.tt-acc-item.open .tt-icon-minus {
    display: inline-flex;
}

.tt-acc-header-content {
    display: flex;
    flex-direction: column;
    color: #707070;
    font-size: 1em;
}

.tt-acc-date {
    font-weight: 700;
}

.tt-acc-inst {
    font-weight: 400;
}

.tt-acc-val {
    font-weight: 400;
}

.tt-acc-body {
    display: none;
}

/* Table Styles */
.tt-acc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
    color: #707070;
	border: 1px solid #B3B7F6 !important;
}

.tt-acc-table th, 
.tt-acc-table td {
    padding: 10px;
    border: 1px solid #B3B7F6 !important;
    text-align: left;
}

.tt-acc-table th {
    width: 30%;
    background-color: #EBECFF;
    font-weight: 600;
}

.tt-acc-table a {
    color: #7203DD;
    text-decoration: underline;
}

.tt-acc-table a:hover {
    text-decoration: none;
}