.important-label small {
    color: red;
    font-weight: bold;
}

.block-border {
    border-radius: 0;
    /* Removes rounded corners */
    border: 0.6px solid black;
    /* Optional: Thickens the border and makes it black */
}

/* Select2 visible select box (unfocused) */
.select2-container--default .select2-selection--single {
    height: 38px; /* Adjust to match input height */
    border: 0.6px solid black !important;
    border-radius: 0 !important;
    padding: 5px 10px;
    background-color: white;
    display: flex;
    align-items: center;
}

/* Focused Select2 box */
.select2-container--default.select2-container--focus .select2-selection--single {
    border: 3px solid black !important;
    box-shadow: 0 0 5px black;
    background-color: #f0f8ff;
}

/* Arrow position fix */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
}

/* Make the selected text align like input */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    padding-left: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #033349 !important;

}

.block-border:focus {
    border: 3px solid black; /* Blue border on focus */
    outline: none;             /* Remove default browser outline */
    box-shadow: 0 0 5px black; /* Optional glow effect */
    background-color: #f0f8ff;  /* Light background on focus */
  }

  .btn-primary {
    background-color: #033349 !important;
    border-color:  #033349 !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color:  #033349 !important; /* Slightly darker shade on hover */
    border-color:  #033349 !important;
}


