/* General styles for the sidebar */
.sidehoverbar {
    position: fixed;
    font-size: 24px;
    z-index: 9;
    overflow: visible;
    transition: 0.5s; /* Smooth transition for hover effects */
	top:50%;
}

/* Styles for Arabic sidebar */
.ArabicHoverSidebar {

}

/* Styles for English sidebar */
.EnglishHoverSidebar {
}

.separator-line{
	height: 2px;
    width: 85%;
    margin: auto;
    background-color: #C3A28B;
}

/* General styles for each box in the sidebar */
.right-box {
    padding: 10px;
    display: flex;
    position: relative;
    height: 70px;
    align-items: center;
    justify-content: center;
    }

.hover-text {
  display: none; /* Hidden by default */
  position: absolute;
  left: 100%; /* Position to the right of <a> */
  transform: translateY(-50px);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap; /* Prevent text wrapping */
  z-index: 10;
  font-size:12px;
}
.ArabicHoverSidebar .hover-text{
	right:100%;
	left:auto;
}

.right-box:hover + .hover-text {
  display: inline-block; /* Show text on hover */
}
