.message {
    padding: 1rem;
    background: #eff8ff;
    color: #2779bd;
    border-color: #6cb2eb;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    margin-right: 1rem;
    margin-left: 1rem;
}
.message.hidden {
    display: none;
}
.message.success {
    background: #e3fcec;
    color: #1f9d55;
    border-color: #51d88a;
}
.message.warning {
    background: #fffabc;
    color: #8d7b00;
    border-color: #d3b800;
}
.message.error {
    background: #fcebea;
    color: #cc1f1a;
    border-color: #ef5753;
}
.error-message {
    color: #cc1f1a;
}

.required label:after {
    color: #e32;
    content: ' *';
    display:inline;
}

@media print {
  body * {
    visibility: hidden;
  }
  #print_section_payslip, #print_section_payslip * {
    visibility: visible;
  }
  #print_section_payslip {
    position: absolute;
    left: 0;
    top: 0;
  }
}


#options {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.5;
  appearance: none; /* Remove default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
}

#options::-ms-expand {
  display: none; /* Hide arrow icon in Microsoft Edge */
}

#options option {
  padding: 5px;
}

#options option:checked {
  background-color: #007bff;
  color: #fff;
}

#options option:not(:checked) {
  background-color: #fff;
  color: #333;
}

/* Use flexbox to align selected options */
.selected-options {
  display: flex;
  flex-wrap: wrap;
}

.selected-option {
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
}
