html,body {
 height: 100%;
 position: relative;
}

a:focus, button:focus, input:focus {
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.main-container {
 min-height: 100vh; /* will cover the 100% of viewport */
 overflow: hidden;
 display: block;
 position: relative;
 padding-bottom: 150px; /* height of your footer */
}

.ui-widget-header,.ui-state-default, ui-button {
   background:#b9cd6d;
   border: 1px solid #b9cd6d;
   color: #FFFFFF;
   font-weight: bold;
}

.center {
    text-align: center;
    border: 1px solid black;
    display: block;
    background-color: #eee;
    margin-left: auto;
    margin-right: auto;
}
.spinner{
    position: absolute;
    height: 100px;
    width: 100px;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    /* background: url(/link/to/your/image); */
    background-size: 100%;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0;
    left: 0;
    padding: 50px;
    text-align: center;
    background-color: #404040;
}


/*progressbar*/
#progressbar {
   /* margin-bottom: 30px; */
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

/*progressbar text*/
#progressbar li {
    list-style-type: none;
    color: #e88a3e;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #e88a3e;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #e88a3e;
    color: white;
}

#modalAlert {
  visibility:hidden;
 }

 .my-custom-button { /* button spacing in modal alert */
    margin-right: 10px; /* Adjust the value as needed */
  }

  .readonly-input {
    background-color: #dfd8cf !important; /* Light gray background */
    color: #333; /* Dark gray text for better readability */
    cursor: not-allowed; /* Indicate it's not editable */
    border: 1px solid #ccc; /* Optional: Add a border for better visibility */
  }


