/* Default state: No shadow */
input[type="checkbox"]:not(:checked)+.circle-select {
    box-shadow: none;
}

/* Checked state: Box shadow appears */
input[type="checkbox"]:checked+.circle-select {
    box-shadow: 0px 0px 0px 4px #E0E0E0;
}

/* Hover effect for better UI */
.circle-select:hover {
    opacity: 0.8;
}
.capitalize_text {
    text-transform: capitalize;
}
.uppercase_text {
    text-transform: uppercase;
}

.search-suggestions {
    margin: 0;
}
.search-suggestions li {
    font-size: .875rem;
    margin-top: 8px;
}
.search-suggestions li a {
    text-decoration: none;
    color: var(--namay--black);
}
.search-suggestions li a:hover {
    text-decoration: none;
    color: var(--namay--black);
    font-weight: 500;
    font-size: 13px;
}
