/*table {
    width: 100%;
    border-collapse: collapse;
  }
  table, th, td {
    border: 1px solid red;
  }*/

  table{
    padding: 5px;
    border-bottom: solid gray 2px;
  }
  .total_subsection_boq{
    text-align: right;
  }
  .boq_number{
    width:25px;
    max-width: 50px;
    text-align: center;
    /*border: solid black 1px;*/
  }
  th{
    text-align: center;
    /*border: solid black 1px;*/
  }
  input{
    width: 100%;
    display:block;
    /*border:solid green 1px;*/
    min-width: 20px;

  }
input.form-control {
    text-align: center;
}
  #customer_rating{
    background-color:antiquewhite;
    padding: 30px;
  }
  .summary_table{
    border: solid black 2px;
    border-radius: 5%;
    background-color: aliceblue;
  }
  .summary_table td{
    width: 100px;
    padding: 5px;
  }

  *:required {
    background-color:blanchedalmond;
  }
  
  .listBoqTable {
     
      border-collapse: collapse;
      width: 100%;
  }

  .listBoqTable th, td {
      
      text-align: left;
      padding: 8px;
  }

  .listBoqTable th {
      cursor: pointer;
  }
  
  .button_boq{
    margin: 0 0 20px 0;
  }

  .not_authorized{
    cursor: pointer;
    text-align:center;
    border: solid gray 2px;
    width:150px;
    float:right;
  }
  .not_authorized:hover{
    border: solid black 2px;
    background-color: greenyellow;
  }
  .authorized{
    cursor: pointer;
    text-align:center;
    border: solid gray 2px;
    width:150px;
    float:right;
    background-color: greenyellow;
  }
  .authorized:hover{
    border: solid gray 2px;
    background-color: none;
  }

  #loginForm{
    border:solid black 2px;
    max-width: 50%;
    align-items: center;
    margin:200px auto;
    
  }

  #newTicketSubmit label{
    font-weight:bold;
  }

.boqStatus{
  color: white;
  text-align: center;
}

.spinner-popup {
  display:none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 9999; /* Ensure it appears above other content */
}

.spinner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}