﻿body {
}
.tf-search-sticky {
    max-width: 900px;
    margin: 30px auto;
}

.custom-search-wrapper {
    display: flex;
    align-items: center;
    background: #f5f6fa;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.search-input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    background: transparent;
    outline: none;
}

/* RadioButtonList Styling */
.search-options {
    display: flex;
    margin: 0;
}

    .search-options input[type="radio"] {
        display: none;
    }

    .search-options label {
        padding: 14px 22px;
        cursor: pointer;
        font-weight: 500;
        color: #2a5bd7;
        border-left: 1px solid #dbe2ff;
        margin: 0;
    }

    .search-options input[type="radio"]:checked + label {
        background: #e9efff;
        font-weight: 600;
    }

.search-btn {
    background: #2a5bd7;
    color: #fff;
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}