
#themes_global_point .custom-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

#themes_global_point .custom-tab-btn {
    padding: 10px 20px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 24px;
    line-height: 56px;
    padding: 0 40px;
    transition: all 0.3s;
}

#themes_global_point .custom-tab-btn.active {
    background: #000;
    color: white;
}

#themes_global_point .custom-tab-content {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
