.uswds-tabs-wrapper-0395a7d8 {
    display: flex;
    flex-direction: column;
    border: 1px solid #dfe1e2;
    border-radius: 4px;
    background: #fff;
    width: 100%;
}

.uswds-tabs-wrapper-0395a7d8 .uswds-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #dfe1e2;
    background-color: #f1f1f1;
}

.uswds-tabs-wrapper-0395a7d8 .uswds-tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #54595F; /* Fallback to secondary */
    border-bottom: 4px solid transparent;
    transition: all 0.2s ease-in-out;
    margin-bottom: -1px;
}

.uswds-tabs-wrapper-0395a7d8 .uswds-tab-btn:hover {
    background-color: #e4e4e4;
}

.uswds-tabs-wrapper-0395a7d8 .uswds-tab-btn.active {
    border-bottom-color: #4054B2; /* Match kit custom color */
    color: #4054B2; 
    background: #fff;
}

.uswds-tabs-wrapper-0395a7d8 .uswds-tabs-content-wrapper {
    padding: 2rem;
}

.uswds-tabs-wrapper-0395a7d8 .uswds-tabs-content {
    display: none;
    color: #7A7A7A; /* Fallback to text */
    line-height: 1.6;
}

.uswds-tabs-wrapper-0395a7d8 .uswds-tabs-content.active {
    display: block;
    animation: uswdsFadeIn 0.3s ease-in;
}

@keyframes uswdsFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .uswds-tabs-wrapper-0395a7d8 .uswds-tab-btn {
        width: 100%;
        text-align: left;
        border-bottom: none;
        border-left: 4px solid transparent;
    }
    .uswds-tabs-wrapper-0395a7d8 .uswds-tab-btn.active {
        border-bottom-color: transparent;
        border-left-color: #4054B2;
    }
}