﻿html.x-fixed-viewport, .x-fixed-viewport > body {
    position: absolute !important;
    overflow: hidden;
}

.sidePadding {
    padding: 0 0 0 16px !important;
}

.x-title .x-innerhtml {
    color: #2196f3 !important;
}

.opacityCSS {
    opacity: 0.7;
}

.x-gridcolumn > .x-header-el {
    font-weight: bold !important;
}

.titleBarCSS {
    background-color: #fafafa !important;
    color: #2196f3 !important;
}

.modalOpeningButton {
    border: 1px solid !important;
    border-radius: 2px !important;
    color: #2196f3 !important;
}

body {
    overflow: auto !important;
}

.x-float-wrap {
    position: fixed !important;
}

.custom-adjustment-profile {
    position: absolute !important;
    right: -3%;
    background-color: rgb(33, 150, 248) !important;
}

@media (min-width: 2200px) {
    .custom-adjustment-profile {
        right: -2%;
    }
}

@media (min-width: 3000px) {
    .custom-adjustment-profile {
        right: -1%;
    }
}

.tooltipcust {
    position: relative;
    display: inline-block; /* Ensures inline display */
}

    .tooltipcust .tooltiptext {
        visibility: hidden;
        width: 170px;
        height: 35px;
        background-color: white;
        color: black;
        text-align: center;
        border-radius: 6px;
        padding: 10px 0;
        position: fixed;
        z-index: 1;
        transform: translateY(-50%);
        margin-left: 2%;
        margin-top: 0.55%;
        opacity: 0;
        transition: opacity 0.3s;
        border: 1px solid #ccc;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

        .tooltipcust .tooltiptext::after {
            content: "";
            position: absolute;
            right: 100%;
            top: 50%;
            margin-top: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: transparent white transparent transparent;
        }


    .tooltipcust:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }


.overlay-custom {
    background: rgba(0, 0, 0, 0.5);
    color: #050505;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    opacity: 0.90;
}

.spinner-custom {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #2196f3;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#completedFolderTree .x-show-selection > .x-listitem.x-selected {
    background-color: transparent !important;
}

html, body, form, #component {
    height: 100%;
}

#component {
    display: flex;
    flex-direction: column;
}

#component iframe {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    border: none;
}


.row-strike .x-body-el {
    text-decoration: line-through;
    color: gray; /* optional */
}

#completedFolderTree .x-header-el {
    background: white;
}

.result-tab-style .x-innerhtml{
    height: 100%;
}