@tailwind base;
@tailwind components;
@tailwind utilities;

.paperclip-help {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.paperclip-help:hover {
    transform: scale(1.2);
}

.search-popup {
    display: none;
}

.speech-bubble {
    display: none;
    position: absolute;
    bottom: 40px;
    right: 0;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}