/* Drawer styling */
#lmp-drawer {
    position: fixed;
    top: 60px; /* leave space for WP admin bar / site header */
    right: -400px; /* hidden by default */
    width: 400px;
    height: calc(100% - 60px); /* shorter so we see top area */
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    padding: 20px 20px 40px;
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    border-left: 3px solid #0073aa; /* WP blue accent */
}

#lmp-drawer.open {
    right: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

#lmp-drawer .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

#lmp-drawer h2 {
    margin-top: 40px; /* push content below close button */
}
