html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

@media (min-width: 1024px) {
    .container {
        max-width: 100%;
    }
}

.loading-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid #ddd;
    border-top-color: green;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}

#manifest-info {
    height: 300px; /* Example height */
    overflow-y: auto;
}

.table-container thead {
    position: sticky;
    top: 0;
    /*background-color: #f2f2f2;  Example background */
}

.table tr.removed {
    --bs-table-color: red !important;
    --bs-table-striped-color: red !important;
    --bs-table-hover-color: red !important;
}

.table tr.new {
    --bs-table-color: blue;
    --bs-table-striped-color: blue;
    --bs-table-hover-color: blue;
}


/*07/31/2025 Added by Changburm*/

/*Shared Modal*/
.custom-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

.custom-modal-content {
    background-color: #fff;
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust position to center */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Width of the modal */
    border-radius: 5px;
    
    height: 80%; /* Set the modal height to 80% of the viewport height */
    overflow-y: auto; /* Add vertical scrolling if content overflows */

}

.custom-modal-footer {
    text-align: right;
    margin-top: 20px;
}

