#radhe-launcher {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ff6f61;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: Arial;
    z-index: 99999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

#radhe-window {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 350px;
    height: 520px;
    background: #fff;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    z-index: 100000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    font-family: Arial;
}

.radhe-header {
    background: #ff6f61;
    padding: 12px;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.radhe-close {
    float: right;
    cursor: pointer;
}

.radhe-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f7f7f7;
}

.radhe-msg {
    padding: 8px;
    margin: 8px 0;
    border-radius: 8px;
    max-width: 80%;
    line-height: 1.4;
    font-size: 13px;
}

.bot {
    background: #ffffff;
    border: 1px solid #ddd;
}

.user {
    background: #ff6f61;
    color: white;
    margin-left: auto;
}

.radhe-footer {
    padding: 10px;
    display: flex;
    gap: 8px;
}

#radhe-input {
    flex: 1;
    border-radius: 20px;
    padding: 8px 10px;
    border: 1px solid #ccc;
}

.radhe-btn {
    background: #ff6f61;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
}