/**
 * SD SEO Title & Description – Tab Styles
 *
 * @package SD_SEO_Title_Description
 */

.sdstd-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #c3c4c7;
    margin-bottom: 20px;
    padding: 12px 12px 0 12px;
}

.sdstd-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #50575e;
    background: transparent;
    border: 1px solid transparent;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    bottom: -2px;
}

.sdstd-tab:hover {
    color: #2271b1;
    background: #f0f6fc;
}

.sdstd-tab.active {
    color: #1d2327;
    background: #fff;
    border-color: #c3c4c7;
    border-bottom: 2px solid #fff;
    font-weight: 600;
}

.sdstd-tab .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

.sdstd-tab-content {
    display: none;
    padding: 0 12px 12px 12px;
}

.sdstd-tab-content.active {
    display: block;
}
