.fhm-wrapper-d7de50a5 .fhm-container {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fhm-wrapper-d7de50a5 .fhm-container.is-open {
    right: 250px; /* Slides container to the left by the width of the flyout */
}

.fhm-wrapper-d7de50a5 .fhm-toggle-btn {
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 15px;
    cursor: pointer;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 2;
    position: relative;
}

.fhm-wrapper-d7de50a5 .fhm-toggle-btn i,
.fhm-wrapper-d7de50a5 .fhm-toggle-btn svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.fhm-wrapper-d7de50a5 .fhm-flyout {
    position: absolute;
    right: -250px; /* Hidden initially, to the right of the button */
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 1;
}

.fhm-wrapper-d7de50a5 .fhm-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.fhm-wrapper-d7de50a5 .fhm-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fhm-wrapper-d7de50a5 .fhm-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.2s ease, transform 0.2s ease;
    font-weight: 500;
}

.fhm-wrapper-d7de50a5 .fhm-item:hover {
    background: #e0e0e0;
    transform: translateX(-3px);
}

.fhm-wrapper-d7de50a5 .fhm-item-icon {
    margin-right: 10px;
    display: flex;
}

.fhm-wrapper-d7de50a5 .fhm-item-icon i,
.fhm-wrapper-d7de50a5 .fhm-item-icon svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
    fill: currentColor;
}
