#chatics-widget {
    position: fixed;
    bottom: 20px;
    z-index: 99999;
}

.chatics-position-right {
    right: 20px;
}

.chatics-position-left {
    left: 20px;
}

#chatics-toggle {
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #00b894;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

#chatics-toggle img {
    width: 28px;
    height: 28px;
}
#chatics-toggle svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

#chatics-frame-wrapper {
    position: fixed;
    bottom: 90px;
    width: 400px;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    background: #fff;
    display: none;
    flex-direction: column;
}

.chatics-position-right #chatics-frame-wrapper {
    right: 20px;
}

.chatics-position-left #chatics-frame-wrapper {
    left: 20px;
}

#chatics-frame-wrapper iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* Optional Chat Header - only if you want to inject your own UI */
#chatics-header {
    background-color: #00b894;
    color: #fff;
    padding: 12px 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatics-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}
