/* Custom scrollbars */
.register-box {
    margin-top: 10px;
    overflow: auto;
    max-height: 600px; /* Adjust the max height as needed */
}

/* Webkit browsers (Chrome, Safari) */
.register-box::-webkit-scrollbar {
    width: 8px;  /* Adjust the width of the scrollbar */
}

.register-box::-webkit-scrollbar-thumb {
    background-color: darkgrey;  /* Scrollbar color */
    border-radius: 10px;  /* Rounded corners */
}

.register-box::-webkit-scrollbar-track {
    background: #f1f1f1;  /* Track color */
}

/* Firefox */
.register-box {
    scrollbar-width: thin; /* Narrow scrollbar */
    scrollbar-color: darkgrey #f1f1f1; /* Scrollbar color and track color */
}


.modal-dialog {
    max-width: 900px !important;
}

.custom-multiple-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
  }
  
  .custom-multiple-select option {
    padding: 8px;
  }
  
  .custom-multiple-select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }
  
  .alert-box {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
  }
  