/*
 Theme Name:   Reobiz Child
 Theme URI:    http://rstheme.com/products/wordpress/reobiz/
 Description:  Reobiz Child
 Author:       RS Theme
 Author URI:   http://rstheme.com
 Template:     reobiz
 Version:      5.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 */
/* Wrap and align with the existing topbar list */
.toolbar-sl-share ul.clearfix {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* The menu container li */
.toolbar-sl-share li.rs-topbar-menu {
  margin-right: 10px; /* spacing before icons */
}

/* WordPress menu markup */
.toolbar-sl-share .rs-topbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toolbar-sl-share .rs-topbar-nav > li {
  position: relative;
}

.toolbar-sl-share .rs-topbar-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
}

/* dropdown */
.toolbar-sl-share .rs-topbar-nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin: 8px 0 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 9999;
}

.toolbar-sl-share .rs-topbar-nav li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toolbar-sl-share .rs-topbar-nav li ul li a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  white-space: nowrap;
}

/* optional: small caret after parent if it has children */
.toolbar-sl-share .rs-topbar-nav > li.menu-item-has-children > a:after {
  content: "▾";
  font-size: 12px;
  margin-left: 4px;
}
