/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
* {
    -webkit-tap-highlight-color: rgba( 0, 0, 0, 0 ); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

body {
    /*
    -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold 
    -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit 
    -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' 
    background-color: #E4E4E4;
    background-image: linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    font-family: system-ui, -apple-system, -apple-system-font, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 12px;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    Padding to avoid the "unsafe" areas behind notches in the screen padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-right, 0px);
    text-transform: uppercase;
    width: 100%;
    */
}

.event {
}

    .event.listening {
        display: block;
    }

    .event.received {
        display: none;
    }

@keyframes fade {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fade {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.blink {
    animation: fade 3000ms infinite;
    -webkit-animation: fade 3000ms infinite;
}



.nav select {
    display: none;
}

@media (max-width: 767px) {
    .nav .list-group {
        display: none;
    }

    .nav select {
        display: inline-block;
        width: 100%;
    }
}

.list-group {
    width: 100%;
}

.search i, .filter-row-remove i {
    font-size: large;
}




.modal-body .add-task {
    color: blue;
}

    .modal-body .add-task:hover {
        color: grey;
        cursor: pointer;
    }

#tblData {
    white-space: nowrap;
}

    #tblData td {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100px;
    }

        #tblData td:nth-child(1) {
            max-width: 100%;
        }

    #tblData tbody tr {
        cursor: pointer;
    }

    #tblData .action {
        margin-left: 5px;
    }

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.main-wrapper {
    white-space: normal;
    word-break: break-word;
}


body .popover {
    max-width: 50%;
}

.form-ctrl-custom {
    width: 90% !important;
    float: left;
}

.select-opt, .spn-done {
    font-size: x-large;
    cursor: pointer;
}

.modal-body .action {
    padding-left: 10px;
    margin: 0 0 15px 15px;
    width: 60px;
}
.multi-content table {
    display: block;
    overflow-x: scroll;
}
label[for=chkCheckAll] {
    margin-bottom: 0;
}
body.modal-open {
    overflow: hidden !important;
}