.site-details {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-detail {
    flex: 1;
    margin-right: 20px;
}

.site-detail:last-child {
    margin-right: 0;
}

.site-detail p {
    margin: 10px 0;
    color: #444;
}

.site-detail p strong {
    font-weight: bold;
    color: #333;
}

.departments,
.designations {
    list-style: none;
    padding: 0;
    margin: 0;
}

.departments li,
.designations li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.departments li:before,
.designations li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #555;
}
.error-message {
    color: red;
}
.error-tab {
  /* Define your highlighting styles here */
  background-color: #f8d7da; /* For example, light red background */
  /* Add any other styles you want to apply to highlight the tab header */
}
/* Style the Select2 dropdown when it's in an invalid state */
.has-error .select2-selection {
    /*border: 1px solid #a94442;
    border-radius: 4px;*/
    border-color:rgb(185, 74, 72) !important;
}
#add_comp_address {
    height: 126px; /* Set the desired height in pixels */
}
.approve {
    color: green;
    /* Additional styling for approve status */
}

.reject {
    color: red;
    /* Additional styling for reject status */
}
.large-message {
    font-size: 16px; /* Adjust as needed */
}
.swal-toast-container {
    width: 400px !important; /* Adjust as needed */
}
.custom-action-column {
    display:  -webkit-box;
    flex-wrap: wrap; /* Allow buttons to wrap within the cell */
}

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white overlay */
  display: none; /* Initially hide the overlay */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure the spinner is on top of other elements */
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Ensure that the table and columns do not override set widths */
#view-employee-table {
    table-layout: fixed;
    width: 100%;
}

#view-employee-table th, #view-employee-table td {
    word-wrap: break-word;
}

/* Footer CSS */
#view-employee-table tfoot  th input {
    width: -moz-available; /* Adjust width as needed */
}

