.searchPage {
    display: flex;
    flex-direction: column;
    gap:3vh;
    padding: 10vh 2% 0 2%;
}
.sInput {
    width:90%;
    margin: 0 auto;
    border-radius: 10px;
    padding: 3vw 4.2vw;
    outline: 0;
    border:0;
}
.clubCats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.searchCat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}
.catIcon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.catIcon i {
    font-size: 2em;
    color: var(--primary-color);
}
.catName {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9em;
    text-align: center;
    width: 100%;
    max-width: 120px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}
.srchPopClubs {
    width:90%;
    display: flex;
    flex-direction: column;
    margin: 2% auto 20vh auto;
    gap:15px;
}
.popClubItem {
    background-color: #fff;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    border-radius: 25px;
    padding-left: 10px;
}
.popClubItem img {
    width:100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
}
.popClubInf {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 5% 3%;
    background: var(--secondary-color);
    border-radius: 25px;
    color: #fff;
}
.popClubImg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.popClubRoute, .catClubRoute {
    color: #fff;
    border-radius: 15px;
    padding: 2% 8%;
    width: 65px;
}
.popClubRoute {
    background: rgba(0, 0, 0, 0.3);
}
.popClubRoute:hover, .popClubRoute:active, .popClubRoute:focus {
    background:rgba(255,255,255,0.3);
    color:#000;
}
.catClubRoute {
    background: var(--primary-color);
}
.catClubRoute:hover, .catClubRoute:focus, .catClubRoute:active {
    background:var(--secondary-color);
}

.search-results {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-result-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.result-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
}

.business-name {
    font-weight: 500;
}

.business-rating {
    color: #ffa500;
    font-weight: bold;
}

.no-results {
    background: #f8f8f8;
}

.no-results .result-link {
    justify-content: center;
}

.no-results .business-name {
    color: #666;
    font-style: italic;
}