html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.rm05 {
    margin-top: 0.5em;
}

.rm10 {
    margin-top: 1.0em;
}

.rm15 {
    margin-top: 1.5em;
}

.rm20 {
    margin-top: 2.0em;
}

.input-group > .input-group-append > .group-first {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

.input-group > .group-middle {
    text-align: center;
    width: 75px;
    flex: none;
}

.input-group > .input-group-append > .group-last {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    background-color: #fff;
}

.input-group > input::-webkit-outer-spin-button,
.input-group > input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.result-header-table {
    margin-bottom: 0px;
}
#locTable > tbody > tr > td {
    white-space: normal;
}
#locTable > thead > tr {
    position: sticky;
    top: 0;
    background: #2980b9;
    color: #ffffff;
}
#droppedlocTable > tbody > tr > td {
    white-space: normal;
}

#droppedlocTable > thead > tr {
    position: sticky;
    top: 0;
    background: #2980b9;
    color: #ffffff;
}
.locHide {
    display: none;
}
#locContainer > .dt-search {
    display: none;
}
#locTable_info {
    font-weight: bold;
}
.msgBar {
    padding-bottom: .5rem !important;
    padding-top: .5rem !important;
}
label.control-label {
    font-size: 13px !important;
}

.homeLink, .homeLink:hover {
    text-decoration: none;
    color: white;
}
.truncated-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px; /* Example width */
    cursor: pointer;
}

/* CSS for modal */
.modalText {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.modalText-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}