/**
 * DiveWP Hosting Tabs Styles
 *
 * Styles for the Hosting feature tabs: Benchmark and Hosting Guide
 *
 * @package     DiveWP
 * @version     1.0.0
 * @author      Oleg Petrov
 */

.divewp-hosting-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e5e7eb;
    margin: 12px 0 16px;
}

.divewp-hosting-tab {
    appearance: none;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    border-radius: 6px 6px 0 0;
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: -1px;
}

.divewp-hosting-tab[aria-selected="true"] {
    background: #ffffff;
    border-bottom-color: #ffffff;
    color: #111827;
}

.divewp-hosting-tab-content {
    display: none;
}

.divewp-hosting-tab-content.active {
    display: block;
}

.divewp-hosting-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 12px;
}

.divewp-hosting-summary__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef2ff;
    color: #3730a3;
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 12px;
}


