@media (min-width: 1200px){
    .container {
        max-width: 1180px;
    }
}

@media (min-width: 1400px){
    .container {
        max-width: 1380px;
    }
}

.tt-header {
    padding: 10px 0;
    background: #e96834;
    margin: 0 0 30px 0;
    font-size: 20px;
}

.navbar-brand {
    font-size: 40px;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff4e3;
}

.responsive-scroll-container {
    max-width: 100%;
    overflow: auto;
}

.responsive-scroll-container th,
.responsive-scroll-container td {
    white-space: nowrap;
}

.statistics-day-0 td,
.statistics-day-6 td {
    background: #fff4e3;
}

.statistics-total td {
    background: #000;
    color: #fff;
}

.table-locker-counts {
    margin: 0;
    padding: 0;
}

.table-locker-counts tr:first-child th,
.table-locker-counts tr:first-child td {
    border: 0;
}

.table-locker-counts th,
.table-locker-counts td {
    font-size: 12px;
    width: 30%;
}

.btn-mega {
    float: left;
    width: 100%;
    padding: 20px;
    margin: 0 0 20px 0;
}

.btn-medium {
    float: left;
    width: calc(50% - 20px);
    padding: 15px;
    margin: 0 20px 20px 0;
}

.btn-medium--last {
    float: right;
    margin-right: 0;
}


.password-expired{
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.2);
}

.password-expired--inner{
    padding: 25px;
    border-radius: 8px;
    margin: auto;
    width: 1000px;
    max-width: 100%;

    display: block;
    background: #fff;
    border: 2px solid #e96834;
}

.blurred{
    filter: blur(3px);
}


.tt-popover {
    position: relative;
    display: inline-block;
    cursor: pointer;
}


.tt-popover-message {
    display: none;
    position: absolute;
    top: 100%; /* Below the trigger */
    left: 50%;
    /*transform: translateX(-50%);*/
    background: black;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    width: 300px;
}


.tt-popover-message.visible {
    display: flex;
    align-items: center;
}

.tt-popover-trigger {
    font-size: 18px;
}