body {
    font-family: sans-serif, Arial, 'Times New Roman';
    background: #d8d4d4;
    color: #000000;
    margin: 5px;
    padding: 5px;
}

.CountDown {
    padding: 0px;
    margin: 0px;
}

.bar {
    padding: 0px 0px 0px 27px;
    margin: 0px;
}

#blinking-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: red;
    border-radius: 50%;
    animation: blink 0.5s infinite;
    vertical-align: middle; /* Aligns the dot vertically with the text */
    margin-right: 3px; /* Adds a little space between the dot and the text */
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
    /* Invisible at halfway point */
    100% {
        opacity: 1;
    }
}

.Done {
    vertical-align: bottom;
}

.HideMe {
    display: none;
}

.transcription {
    width: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 2px;
    padding: 1px 1px 10px 1px;
    border-radius: 7px;
}

.VoiceTitle {
    margin-top: 0px;
    padding: 7px;
    color: white;
    background-color: lightslategray;
    border-radius: 7px 7px 0px 0px;
    font-size: 1.25em;
}

.GridCommon {
    width: 100%;
}

.GridLine {
    border-width: 0px 2px 0px 0px;
}

.GridHeader {
    color: white;
    background-color: blue;
    height: 27px;
    text-align: center;
    cursor: default;
}

.GridNormalRow {
    background-color: #d6e3fb;
    height: 30px;
    cursor: default;
    /*transition: background-color 0.5s ease;*/
}

    .GridNormalRow:hover {
        background-color: lightslategrey;
    }

.GridNormalRowP {
    background-color: #d6e3fb;
    height: 30px;
    cursor: default;
    /*transition: background-color 0.5s ease;*/
}

    .GridNormalRowP:hover {
        background-color: lightslategrey;
        cursor: pointer;
    }

.GridAlternatingRow {
    background-color: #FFFFFF;
    height: 30px;
    cursor: default;
    /*transition: background-color 0.5s ease;*/
}

    .GridAlternatingRow:hover {
        background-color: lightslategrey;
    }

.GridAlternatingRowP {
    background-color: #FFFFFF;
    height: 30px;
    cursor: default;
    /*transition: background-color 0.5s ease;*/
}

    .GridAlternatingRowP:hover {
        background-color: lightslategrey;
        cursor: pointer;
    }

.GridRowHighlight {
    background-color: lightslategrey;
}

.GridRowHighlightP {
    background-color: lightslategrey;
    height: 30px;
    cursor: pointer;
}

.GridWarning {
    color: White;
    background-color: #F1545B;
    height: 30px;
    cursor: default;
}

.GridCaution {
    color: black;
    background-color: #f2b021;
    height: 30px;
    cursor: default;
}

.GridNotice {
    color: black;
    background-color: #00ff90;
    height: 30px;
    cursor: default;
}

.GridExtra {
    color: white;
    background-color: #2981f6;
    height: 30px;
    cursor: default;
}

.GridExtraP {
    color: white;
    background-color: #2981f6;
    height: 30px;
    cursor: default;
    cursor: pointer;
}

    .GridExtraP:hover {
        background-color: lightslategrey;
        cursor: pointer;
    }

.GridSeen-N {
    color: white;
    background-color: #258458;
    height: 30px;
    cursor: default;
}

    .GridSeen-N:hover {
        background-color: lightslategrey; /* Hover effect */
        cursor: pointer;
    }

.GridSeen-A {
    background-color: #c2ffc8;
    height: 30px;
    cursor: default;
}

    .GridSeen-A:hover {
        background-color: lightslategrey; /* Hover effect */
        cursor: pointer;
    }

.GridSeenN {
    color: white;
    background-color: #258458;
    height: 30px;
    cursor: default;
}

    .GridSeenN:hover {
        background-color: lightslategrey; /* Hover effect */
        cursor: default;
    }

.GridSeenA {
    background-color: #c2ffc8;
    height: 30px;
    cursor: default;
}

    .GridSeenA:hover {
        background-color: lightslategrey; /* Hover effect */
        cursor: default;
    }

.shrink img {
    transition: 0.3s ease;
}

    .shrink img:hover {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        transition: 1s ease;
    }


/*button with progress bar*/
.btn-with-progress {
    position: relative;
    display: inline-block;
    width: 120px;
}

    .btn-with-progress .progress-bar-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 6px; /* Height of the progress bar */
        background-color: #e9ecef; /* Background of the progress bar */
        overflow: hidden;
        border-radius: 0 0 5px 5px; /* Rounded corners */
    }

    .btn-with-progress .progress-bar {
        height: 100%;
        width: 0%;
        background-color: #c4160b;
        transition: width linear; /* Ensures smooth and continuous motion */
    }

.styled-checkbox input[type="checkbox"] {
    /* Reset default look */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Custom style */
    width: 20px;
    height: 20px;
    border: 1px solid #66A3CE;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
}
    /*Checked state (draw a checkmark)*/
    .styled-checkbox input[type="checkbox"]:checked::after {
        content: '';
        position: absolute;
        left: 6px;
        top: 0px;
        width: 6px;
        height: 13px;
        border: solid #0026ff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
