.search-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.search-bubble .ui.circular.button {
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;  
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.search-bubble .ui.circular.button > i.icon {
width: 1em;
height: 1em;

display: flex;
align-items: center;
justify-content: center;

margin: 0 !important;
line-height: 1;
font-size: 1.6rem;

transform: translateX(1px);
}

.search-bubble .ui.circular.button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Ensure modal is in the middle */
#searchModal.ui.modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}