.info_button_container {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
}

#info-icon {
    font-size: 48px;
    color: #0d6efd; /* Bootstrap primary blue */
    cursor: pointer;
    transition: transform 0.2s ease;
    
}

#info-icon:hover {
    transform: scale(1.2);
    color: #0a58ca;
}
/* ...................................................... */

/* Modal*/
.modal_content{
  background-color: #e8f5e9;
}


.modal_header{
    padding: 10px;
    border-bottom: 1px solid #aaaaaa;
    font-size: calc(16px + 2vh);
    font-weight: bold;
    text-align: center;
}

.instructions_card_title{
  font-size: 26px;
  font-weight: bold;
  margin: 10px;
}

.instruction_card_ul {
  list-style-type: disc;
}

.instruction_card_ul li{
  font-size: 18px;
}

.exe_button{
  display: flex;
  justify-content: center;
}
/* ...................................................... */

/* Custom Scrollbar for Modal Body */
.modal_content .modal-body {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #4b4b4b #e8f5e9; /* thumb and track */

  /* Ensure content scrolls if needed */
  overflow-y: auto;
}

/* Chrome, Edge, and Safari */
.modal_content .modal-body::-webkit-scrollbar {
  width: 10px;
}

.modal_content .modal-body::-webkit-scrollbar-track {
  background: #e8f5e9; /* track color */
  border-radius: 10px;
}

.modal_content .modal-body::-webkit-scrollbar-thumb {
  background-color: #006305; /* thumb color */
  border-radius: 10px;
  border: 2px solid #e8f5e9; /* padding effect */
}

.modal_content .modal-body::-webkit-scrollbar-thumb:hover {
  background-color: #005c05; /* darker on hover */
}
.modal_content .modal-body {
  max-height: 100%;
  overflow-y: auto;
}
