.groq-menu {
    position: absolute;
    background: rgb(41, 79, 185);
    border: 1px solid #ccc;
    padding: 0.5rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    gap: 0.5rem;
    border-radius: 6px;
}
.groq-menu button {
    cursor: pointer;
    background-color: #f0f0f0;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
}
.groq-response-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 500px;
    max-height: 400px;
    background-color: #f9f9f9;
    border: 1px solid #999;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow-y: scroll;
    z-index: 1001;
}
.groq-response-content h3 {
    margin-top: 0;
}
.groq-response-content button {
   margin-top: 10px;
    background: #444;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    float: right;
}
