#ssb-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: sans-serif;
}

#ssb-icon {
    cursor: pointer;
}

#ssb-icon img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

#ssb-chatbox {
    display: none;
    width: 300px;
    height: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    overflow: hidden;
    flex-direction: column;
}

#ssb-chatbox.open {
    display: flex;
}

#ssb-header {
    background: #ff69b4;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}

#ssb-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}

.ssb-msg {
    margin: 5px 0;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
}

.ssb-bot {
    background: #f1f1f1;
    align-self: flex-start;
}

.ssb-user {
    background: #ff69b4;
    color: white;
    align-self: flex-end;
}

#ssb-quick-questions {
    padding: 5px;
    border-top: 1px solid #ddd;
}

#ssb-quick-questions button {
    margin: 3px;
    padding: 6px 10px;
    border: none;
    background: #eee;
    border-radius: 8px;
    cursor: pointer;
}
