.form-item input[type="text"],
.form-item input[type="date"],
.form-item select,
.form-item textarea {
  width: 100%;
  min-width: 300px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #4A4A49;
}

.form-item label {
  display: block;
  margin-bottom: 5px;
}

.form-item textarea {
  resize: vertical;
}

.radio-buttons input[type="radio"] {
  margin: 0;
  vertical-align: middle;
}

.radio-buttons label {
  display: flex;
  align-items: center;
}

.required .starlabel::after {
  content: "*";
  color: red;
  margin-left: 5px;
}

.recommended.starlabel::after {
  content: "*";
  color: blue;
  margin-left: 5px;
}

select[required],
textarea[required],
input[required] {
  border: 1px solid #ced4da;
  padding: .375rem .75rem;
  border-radius: .25rem;
  box-sizing: border-box;
  display: block;
  width: 100%;
  /*min-width: 300px has been removed due to adverse effect on radio buttons in PoW*/
}

.input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input-with-icon input[list] {
  width: 100%;
  padding: 10px;
  padding-right: 30px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #4A4A49;
}

.input-with-icon .fa-sort-down {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #aaa;
}

.form-item select {
  padding-right: 30px;
  position: relative;
  -webkit-appearance: none; /* Remove default styling in WebKit browsers */
  -moz-appearance: none; /* Remove default styling in Firefox */
  appearance: none; /* Standard property */
}

.form-item select + .fa-sort-down {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #aaa;
}

.form-item select::-ms-expand {
  display: none;
}

.form-label{
 float: inline-start !important;
}

/*Change request css*/
.comparison-section {
        display: flex; /* Align original and change sections in one row */
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .comparison-section .section {
        width: 45%; /* Adjust width to ensure space for arrow */
    }
    .arrow {
        font-size: 40px;
        color: #F49600;
        margin: 0 20%; /* Center arrow between sections */
        display: flex;
        align-items: center; /* Vertically center the arrow */
        position: absolute;
    }

    .arrow-header {
        
        color: #BCC5C4;
    }
    .record-button {
        text-align: center;
        margin-top: 10px;
    }
    .view-record-btn {
        margin: 5px;
    }
    .partition-line {
        border-top: 1px solid black;
        margin: 20px 0;
    }
        
    .blue-partition-line {
        border-top: 2px solid #00A6AA;
        margin: 20px 0;
        
    }

    .group-section, .sub-group-section {
        margin-bottom: 20px;
    }
    .group-title, .sub-group-title {
        flex-grow: 1;
    }
    .d-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
     
    .changevalue {
        padding-top: 20px;
    font-weight: bold;
}

.original-section .card-text {
    color: black;
}

.change-section .card-text {
    color: #000000;
    font-weight: bold;
}

.change-segment {
    color: #BCC5C4;
}

.change-segment:last-child {
    color: #000000;
    font-weight: bold;
}

.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050; /* High z-index to ensure it overlays other elements */
}

.processing-icon img {
    width: 100px; /* Adjust size as needed */
    height: 100px;
}

.pill-container {
  display: flex; /* Ensures the items are displayed in a row */
  gap: 10px; /* Adds some spacing between the pills */
  position: sticky;
  top: 174px;
  z-index: 1020;
  background-color: white;
  margin-bottom:15px;
}

.pill {
  padding: 3px 16px; /* Adds padding inside the pill */
  border-radius: 20px; /* Makes the edges round for the pill effect */
  font-size: 12px; /* Adjust text size */
  color: white; /* White text on the pill */
  display: inline-block; /* Ensures the pill stays inline */
  white-space: nowrap; /* Prevents text from wrapping to a new line */
}

.green {
  background-color: #78BE20; /* Green background */
  font-weight: bold
}

.orange {
  background-color: #F49600; /* Orange background */
}


.inline-elements {
  display: flex;
  align-items: center;
}
.inline-elements label {
  margin-right: 10px;
}
.day-circle {
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
text-align: center;
line-height: 40px;
margin: 5px;
background-color: lightgray;
cursor: pointer;
user-select: none;
}
.day-circle.selected {
background-color: #002E5F;
color: white;
}
#daysCircles {
      margin-top: 20px;
      display: none;
  }