html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.side-navbar {
   /* width: 280px;
    height: 100%;*/
    position: absolute;
    margin-left: -300px;
    background-color: #100901;
    transition: 0.5s;
}

.nav-link:active,
.nav-link:focus,
.nav-link:hover {
    background-color: #b3bdc2;
}

.my-container {
    transition: 0.4s;
}

.active-nav {
    margin-left: 0;
}
/* for main section */
.active-cont {
    margin-left: 280px;
}

#menu-btn {
    background-color: #808080;
    color: #fff;
    position: fixed;
    top: 50px;
    /*margin-left: -62px;*/
}
#menu-btn img{
    width: 16px;
}

.data-box {
    display: flex;
    font-size: 14px;
    position: relative;
}
.data-ttl, .data-val {
    padding: 5px 40px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    min-height: 57px;
    display: flex;
    align-items: center;
}
.data-ttl {
    width: 275px;
    font-weight: 500;
}
.data-val {
    width: calc(100% - 275px);
}

.formRow {
    
}
.k-grid-content {
    overflow-x: auto !important;
    overflow-y: auto !important;
    position: sticky;
    bottom: 0;
}

.action-log-container {
    max-height: 130px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 10px;
    background: #f9f9f9;
    scroll-behavior: smooth;
}

.action-log-container::-webkit-scrollbar {
    width: 6px;
}

.action-log-container::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 3px;
}

.action-log-container::-webkit-scrollbar-thumb:hover {
    background-color: #888;
}


.action-log li {
    padding: 6px 10px;
    margin-bottom: 4px;
    border-left: 3px solid #ccc;
    background-color: #f8f9fa;
    font-size: 0.95rem;
}

.action-log li.rejected-line {
    border-left-color: #dc3545;
    background-color: #ffe6e6;
    color: #a30000;
    font-weight: 600;
}

.action-log li:not(.rejected-line):hover {
    background-color: #eef2f5;
}

.highlighted-svrow {
    background: linear-gradient(90deg, #fff9d9, #fff3b0) !important;
    border-left: 4px solid #e0a800 !important;
    transition: background 0.3s ease;
}
.highlighted-svrow:hover {
    background: linear-gradient(90deg, #fff4c2, #ffec9a) !important;
}