/* Alert Error  */
.alert_wrapper {
    width: 600px;
    display: flex;
    flex-direction: column;
    color: #c2371a;
    background-color: #fde8e4;
    border: 0.5px solid #f06548;
    border-radius: 5px;
    font-size: 14px;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 999;
  }
  .alert_message {
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: bold;
  }
  .alert_text {
    background-color: #f06548;
    color: #ffffff;
  }
  .alert_text {
    display: flex;
    align-items: center; 
    padding: 10px 15px;
  }
  .alert_text p {
    font-family: "poppins", sans-serif;
    margin: 0;
    font-size: 13px;
  }
#alert_danger {   
    display: none;  
} 
main::-webkit-scrollbar,
span::-webkit-scrollbar,
ol::-webkit-scrollbar,
ul::-webkit-scrollbar,
pre::-webkit-scrollbar,
div::-webkit-scrollbar {
  width: 0.35rem;
  height: 0.35rem;
}

main::-webkit-scrollbar-track,
span::-webkit-scrollbar-track,
ol::-webkit-scrollbar-track,
ul::-webkit-scrollbar-track,
pre::-webkit-scrollbar-track,
div::-webkit-scrollbar-track {
  background: #ffffff; /* light gray */
  border-radius: 10px;
}

main:hover::-webkit-scrollbar-thumb,
span:hover::-webkit-scrollbar-thumb,
ol:hover::-webkit-scrollbar-thumb,
ul:hover::-webkit-scrollbar-thumb,
pre:hover::-webkit-scrollbar-thumb,
div:hover::-webkit-scrollbar-thumb {
  background: #e8e8e8; /* dark gray */
  border-radius: 10px;
}

/* Style the scrollbar */
::-webkit-scrollbar {
  width: 12px; /* width of the scrollbar */
}

/* Track (the background of the scrollbar) */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* light gray */
  border-radius: 10px;
}

/* Handle (the draggable part of the scrollbar) */
::-webkit-scrollbar-thumb {
  background: #cecece; /* dark gray */
  border-radius: 10px;
}

/* Handle when hovered */
::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3; /* darker gray */
}