
.custraxx-widget-container-class {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    height: 600px;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 9999;
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    pointer-events: none;
}

.custraxx-widget-container--active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.custraxx-launcher-button-class {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgb(37, 99, 235);
    border: none;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: transform 0.2s ease-out, opacity 0.3s;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.custraxx-launcher-button--active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.custraxx-launcher-button-class svg {
    margin: auto;
}

@media (max-width: 600px) {
    .custraxx-widget-container-class {
        width: 100%;
        height: 100%;
        max-width: 100vw;
        max-height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}
