html {
  font-size:14px;
}

@media (min-width:768px) {
  html {
    font-size:16px;
  }
}

html {
  position:relative;
  min-height:100%;
}

body {
  margin-bottom:60px;
}

tr:hover {
    z-index:10;
    background:var(--tblr-table-hover-bg);
}

tr:hover td {
    background:transparent;
}

.lockTh {
    position:sticky;
    top:0px;
    left:0px;
}

.lockTd {
    z-index:100;
    background-color:white !important;
    position:sticky;
    top:0px;
    left:0px;
}
.tblBonusIndName {
    width:200px;
    height:20px;
    overflow:hidden;
    margin:0;
    padding:0;
}
.tblBonusIndValue {
    width:70px;
    height:20px;
    overflow:hidden;
    margin:0;
    padding:0;
}
.filter-link:hover {
    text-decoration: none;
}
.filter-link {
  color: inherit;
}
.filter-link:hover {
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}
.filter-link-rotate:hover {
  transform: rotate(1.5deg);
  opacity: 1;
}
.filter-link-pop:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/*Chat styles*/

#chatInput{
}
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 600px;
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    background-color: #fff;
    z-index: 9999;
}

.chat-header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chat-body {
    padding: 10px;
    margin-bottom:0px;
    overflow-y: auto;
    height: calc(100% - 70px);
}

.chat-footer {
    padding: 10px;
    border-top: 1px solid #ccc;
}

.chat-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 18px;
    z-index: 9998;
}

.btn-close {
    margin-top:-25px;
    float:right;
}

.form-check:hover {
    background-color: #f8f9fa;
    border-radius: 6px;
}

.form-check-input:hover {
    cursor: pointer;
}

.form-check-label:hover {
    cursor: pointer;
}

/*Technology autocomplete*/
.tech-tag {
    background-color: #0d6efd;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.tech-tag span {
    cursor: pointer;
    font-weight: bold;
}

#technologySuggestions li {
    cursor: pointer;
    transition: background-color 0.1s, color 0.1s;
    padding:5px;
}

#technologySuggestions li:hover,
#technologySuggestions li.suggestion-active {
    background-color: #0d6efd;
    color: white;
}

.navbar-logo {
    width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .navbar-logo {
        width:60px;
    }
}

.fade-section {
    opacity: 0;
    transition: opacity 1.35s ease;
}

.fade-section.show {
    opacity: 1;
}

#assetResults, #technicianResults, #srResults, #mchResults {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0 0 0.375rem 0.375rem;
    min-width: 50%;
}

#assetResults .list-group-item, #technicianResults .list-group-item, #srResults .list-group-item, #mchResults .list-group-item {
    padding: 0.25rem 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

#assetResults .list-group-item:hover, #technicianResults .list-group-item:hover, #srResults .list-group-item:hover, #mchResults .list-group-item:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}