/* Pricing Disclosures Modal - Shared Component Styles */

/* Tab menu */
.disclosure--modal .disclosure--tab-menu {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 0;
    gap: 12px;
}

.disclosure--modal .disclosure--tab-link {
    flex: 0 1 auto;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    text-align: center;
    transition: color 0.2s, border-color 0.2s;
    outline: none;
    white-space: nowrap;
}

.disclosure--modal .disclosure--tab-link:hover {
    color: #333;
}

.disclosure--modal .disclosure--tab-link.active {
    color: #266fba;
    border-bottom-color: #266fba;
    font-weight: 600;
}

/* Tab content */
.disclosure--modal .disclosure--tab-content {
    display: none;
    padding-top: 10px;
}

.disclosure--modal .disclosure--tab-content.active {
    display: block;
}

.disclosure--modal .disclosure--tab-content .texts > *:first-child {
    margin-top: 0;
}

.disclosure--modal .disclosure--tab-content .texts ul {
    margin-top: 0;
    padding-top: 0;
}

.disclosure--modal .disclosure--tab-content .texts p:first-child {
    margin-top: 0;
}

/* Smooth modal transitions */
.disclosure--modal {
    display: none;
}

@media (max-width: 767px) {
    .disclosure--modal .disclosure--tab-menu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .disclosure--modal .disclosure--tab-menu::-webkit-scrollbar {
        display: none;
    }

    .disclosure--modal .disclosure--tab-link {
        flex: 0 0 auto;
        font-size: 12px;
        padding: 8px 12px;
    }
}
