/* CT Real Estate Core Custom Extension — Status tabs & price range */

.ct-re-custom-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.ct-re-custom-tab {
    flex: 1;
    padding: 8px 12px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ct-re-custom-tab:hover {
    background: #e0e0e0;
}

.ct-re-custom-tab.active {
    background: #c8a96e; /* matches Real Estate 7 default accent — adjust to site brand colour */
    border-color: #b8945a;
    color: #fff;
}
