/* Base sidebar styling */
.flex-column-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  height: 100vh;
  background-color: #2c3e50;
  color: white;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

/* State when the sidebar is closed */
.flex-column-right.closed {
  transform: translateX(100%);
}

/* Toggle button styling */
.toggle-btn {
  position: absolute;
  top: 20px;
  left: -40px; /* Pulls the button outside the sidebar container */
  width: 40px;
  height: 40px;
  background-color: #2c3e50;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Rotate the arrow icon based on state */
.flex-column-right.closed .icon-arrow {
  transform: rotate(180deg);
}

.icon-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}