﻿.service-block4{
    min-height: 291px;
}
.tp-bgimg {
    opacity: 0.5 !important;
}

.navbar-brand img {
    max-height: 60px;
}

.scrollHeader .navbar-brand img {
    max-height: 50px;
}

.danger-overlay:before {
    background: #943939;
}
.blue-overlay:before {
    background: #4d84b4;
}

.tooLong {
    word-break: break-all;
    width: 100%;
    width: -moz-available; /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
    width: fill-available;
}
.modal-backdrop {
    z-index: 100000 !important;
}

.modal {
    z-index: 100001 !important;
}
.sticky-scrollbar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: auto;
    background: #f8f9fa;
    z-index: 1000;
    width: 100%;
}

.sticky-scrollbar {
    height: 1px;
}

.table-container::-webkit-scrollbar {
    display: none;
}

.table-container {
    zoom: 80%;
    overflow-x: scroll;
}

.custom-loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: all; /* block clicks */
}

.custom-list{
    min-height:120px;
}


.checkbox-hover:hover {
    background: #caf4fa;
    
}


.youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

    .youtube-btn:hover {
        transform: scale(1.05);
    }

.youtube-icon {
    width: 28px;
    height: 28px;
}

.custom-info-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-info-icon {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background-color 0.2s ease;
}


.custom-tooltip {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    max-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 8px 10px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s ease;
    white-space: normal;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.style-th {
    top: 23px;
    height: fit-content;
}

.style-th::after {
    border-style: none !important;
}

.custom-info-container:hover .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

/* optional small arrow */
.custom-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}