
.ssb-searchbar {
    display: flex;
    align-items: center;
    border-radius: 50px;
    background: #f9f9f9;
    padding: 12px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 40px auto;
    gap: 14px;
    transition: box-shadow 0.3s ease;
}
.ssb-searchbar:focus-within {
    box-shadow: 0 0 12px #00bcd4, 0 0 24px #b2ebf2;
}
.ssb-searchbar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    padding: 12px 16px;
    color: #222;
    background: linear-gradient(to right, #ffffff, #f1faff);
    border-radius: 30px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.ssb-searchbar input:focus {
    background: #ffffff;
    box-shadow: inset 0 0 5px rgba(0, 188, 212, 0.2);
}
.ssb-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
}
.ssb-icon:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: scale(1.1);
}
.ssb-icon svg {
    width: 100%;
    height: 100%;
    fill: #00bcd4;
}
