#spa-drawer {
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: width 0.3s ease;
    z-index: 9999;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
}

#spa-drawer-content {
    width: 100%;
    height: 100%;
}

#spa-drawer-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#spa-drawer.open {
    width: 400px; /* Adjust the width as needed */
}

#spa-drawer-toggle {
    right: 410px; /* Adjust based on the width of the drawer */
}
