/* Styling for the custom modern OS Tabs */
.os-tab-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(var(--primary-rgb), 0.4);
    transform: translateY(-2px);
}

.os-tab-btn.active svg {
    color: white !important;
}

.os-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.os-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature List Styling inside pricing cards */
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s;
}

.feature-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    display: block;
}

.feature-list li span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 1.2;
    font-size: 13.5px;
    color: var(--text-muted);
}

.feature-list li strong {
    color: var(--text-main);
    font-weight: 800;
}

.feature-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
