@import url("planer.css");
@import url("maheader.css");
@import url("zeitkonto.css");
@import url("grids.css");
@import url("paginator.css");

/* Tooltip container */
.customtooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

    /* Tooltip text */
    .customtooltip .customtooltiptext {
        pointer-events: none;
        visibility: hidden;
        width: 300px;
        background-color: #555;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text */
        position: absolute;
        z-index: 1;
        bottom: 100%;
        left: 50%;
        margin-left: -150px;
        /* Fade in tooltip */
        opacity: 0;
        transition: opacity 0.3s;
        transition-delay: 1s;
        white-space: pre-wrap;
    }

        /* Tooltip arrow */
        .customtooltip .customtooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    /* Show the tooltip text when you mouse over the tooltip container */
    .customtooltip:hover .customtooltiptext {
        visibility: visible;
        opacity: 0.95;
    }

.customtooltipextension {
    border-radius: 0px;
    border: 0;
    display: block;
    font-size: 12px;
    font-weight: normal;
    customtooltipextension
}

.customtooltipsmall {
    font-size: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


/* .event:nth-child(2n) {
                    border: 2px dashed red;
                } */



.frequenzanalysevalue {
    vertical-align: bottom;
    border: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: inline-block;
    background-color: teal;
    color: white;
    text-overflow: ellipsis;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    white-space: nowrap;
}
.frequenzanalysecontainer {
    vertical-align: bottom;
    height: 100%;
    display: block;
    border: 0;
}

.freqchart {
    cursor: pointer;
}

    .freqchart .path {
        transition: fill .3s ease;
    }

    .freqchart .text {
        font-family: Arial, Verdana, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 500;
    }
    .freqchart .title {
        text-anchor: middle;
        text-transform: uppercase;
        font-size: 12px;
        fill: gray;
    }
    .freqchart .label {
        text-anchor: middle;
        font-size: 16px;
        fill: black;
    }
    .freqchart .dot-red {
        fill: rgba(210,30,30,1);
        stroke-width: 2;
        stroke: white;
    }
    .freqchart .dot-blue {
        fill: rgba(0,112,210,1);
        stroke-width: 2;
        stroke: white;
    }


@media print {

    #NAVIGATION {
        display: none;
    }
}
/* MainLayout */
.page {
    position: relative;
    display: flex;
    flex-direction: row;
}

.main {
    flex: 1;
    background-color: #04445D;
}

.content {
    padding: 0px;
}

@media (max-width: 640.98px) {
}

@media (min-width: 641px) {
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
