.drawerContainer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: white;
  display: flex;
  flex-direction: column;
  z-index: 9998;
  width: 59%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.paddingX4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.menuItem {
  display: flex;
  align-items: center;
  padding-top: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid #d1d5db;
  cursor: pointer;
}

.menuItem:hover {
  background-color: #f9fafb;
}

.iconSize {
  font-size: 20px;
  margin-right: 1rem;
}

.iconImage {
  height: 20px;
  width: 20px;
  object-fit: contain;
  margin-right: 1rem;
}

.textBlackBold {
  color: #000;
  font-weight: 700;
}

.scrollableContainer {
  flex: 1;
  overflow-y: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.blinking-text {
  animation: blinkColor 0.5s infinite;
}

@keyframes blinkColor {
  0%, 100% { color: #e74c3c; }
  50% { color:#F89C03; }
}

@keyframes colorBlink {
  /* First 3 seconds - Red with blinking */
  0%, 8%, 16%, 24% { color: #e74c3c; }  /* Red color */
  4%, 12%, 20% { color: transparent; }  /* Blink off */
  
  /* Next 3 seconds - Blue with blinking */
  25%, 33%, 41%, 49% { color: #008ae6; } /* Blue color */
  29%, 37%, 45% { color: transparent; }  /* Blink off */
  
  /* Third 3 seconds - Red with blinking */
  50%, 58%, 66%, 74% { color: #e74c3c; }  /* Red color */
  54%, 62%, 70% { color: transparent; }  /* Blink off */
  
  /* Last 3 seconds - Blue with blinking */
  75%, 83%, 91%, 99% { color: #008ae6; } /* Blue color */
  79%, 87%, 95% { color: transparent; }  /* Blink off */
}
