.hm-eddab266-wrapper {
    display: inline-flex;
    position: relative;
}

.hm-eddab266-container {
    display: flex;
    align-items: center;
    position: relative;
}

/* Slide out panel horizontal properties */
.hm-eddab266-panel {
    position: absolute;
    right: 100%; /* Position immediately to the left of the button */
    top: 50%;
    transform: translateY(-50%) translateX(15px); /* Offset spacing */
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 99;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    pointer-events: none;
    box-sizing: border-box;
}

/* Active panel style */
.hm-eddab266-wrapper.is-active .hm-eddab266-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-15px); /* Slide perfectly in place */
    pointer-events: auto;
}

/* Toggle button styling */
.hm-eddab266-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #333333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 100;
    position: relative;
}

.hm-eddab266-toggle:focus {
    outline: none;
}

/* Icon states toggling */
.hm-eddab266-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hm-eddab266-toggle-icon svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.hm-eddab266-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
}

.hm-eddab266-wrapper.is-active .hm-eddab266-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
}

.hm-eddab266-wrapper.is-active .hm-eddab266-icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.hm-eddab266-placeholder {
    padding: 20px;
    color: #666;
    text-align: center;
    font-size: 14px;
}
