.tr-file-title {
    font-size: 1em;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.4;
    margin: 0 0 6px 0;
}

.tr-file-meta {
    margin: 0;
    font-size: 0.9em;
    color: #718096;
}

.tr-file-meta strong {
    color: #4A5568;
}

.tr-download-btn {
    font-family: Poppins;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7203DD;
    color: #FFFFFF;
    padding: 6px 35px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.2s ease-in-out;
    margin-top: 6px;
}

.tr-download-btn:hover {
    background: #FF00FF;
    color: #FFFFFF;
}

.tr-download-btn .eicon-file-download {
    font-size: 1em;
}

.tr-no-data {
    text-align: center;
    padding: 40px;
    background: #F4F6F8;
    border: 1px solid #E3E8EC;
    border-radius: 8px;
    color: #718096;
    font-weight: 500;
}


/* AQUI É O NOVO */
.tr-tabs-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: inherit;
}

.tr-tabs-nav {
    display: flex;
    flex-wrap: wrap;
}

.tr-tab-btn {
    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;
}

.tr-tab-btn.tr-active {
    background: #ffffff;
    color: #4c1d95;
    border: 1px solid #B3B7F6;
	border-bottom: none;
    position: relative;
}

.tr-tab-btn:hover {
	border-color: #B3B7F6;
}

.tr-tab-btn.tr-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
}

.tr-tabs-content {
    background: #fff;
	border: #B3B7F6 solid;
    border-width: 0 1px 1px 1px;
}

.tr-tab-pane {
    display: none;
    animation: fadeEffect 0.5s;
}

.tr-tab-pane.tr-active {
    display: block;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tr-files-list {
    list-style: none;
    padding: 0 2em !important;
    margin: 0;
}

.tr-file-item {
    padding: 15px 0;
    border-bottom: 1px solid #B3B7F6;
}

.tr-file-item:last-child {
    border-bottom: none;
}

@keyframes trFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}