/* Container styling */

/*general settings*/
.title_admin_menu{
  background-color:#0869A6 !important;
}

.bg-personalized-blue {
    background-color:#0869A6 !important; 
    color: #ffffff; 
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 300px; /* Optional: adjust as needed */
  background-color: #c2e1f0;
  border: 1px solid #ddd;
}

/* Base item styling */
.menu-list li {
  padding: 12px 20px;
  font-family: sans-serif;
}

/* The Striping Logic */
/* This targets every even item (2nd, 4th, 6th, etc.) */
.menu-list li:nth-child(even) {
  background-color: #f2f2f2;
}

/* Optional: Hover effect to make it interactive */
.menu-list li:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}