#vanita-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    font-family: Arial, sans-serif;
}

#vanita-toggle {
    width: 64px;
    height: 64px;
    background: #c40000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,.3);
}

#vanita-toggle img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

#vanita-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 280px;
    height: 400px;
    background: #fff;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

#vanita-widget.open #vanita-panel {
    display: flex;
}

#vanita-header {
    background: #c40000;
    color: #fff;
    padding: 8px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}

#vanita-body {
    padding: 10px;
    font-size: 13px;
    line-height: 1.5;
    overflow-y: auto;
    flex: 1;
}

.vanita-msg {
    margin-bottom: 10px;
}

.vanita-msg.user {
    text-align: right;
    color: #c40000;
}

.vanita-input {
    width: 100%;
    padding: 6px;
    font-size: 13px;
}

.vanita-buttons button {
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    background: #c40000;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
