


#qr-toggle-button{
    border: none;
    color: black;
    background-color: #cccccc;
    padding: 3px 5px;

}

#qr-toggle-button:hover{
    border: none;
    background-color: #cccccc;
}


.button-container {
    display: flex;
    justify-content: space-between;
    width: 100%; /* Adjust width as necessary */
    margin-top: 20px; /* Optional, for spacing */
}

.left-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}


.left-button:hover, #qr-toggle-button:hover {
    opacity: 0.9; /* Optional, for a hover effect */
}

/* bottom sheet */

#bottom-sheet {
    position: fixed;
    bottom: 0; /* Start with the bottom sheet fully visible */
    left: 0;
    right: 0;
    height: 375px; /* Full height of the bottom sheet */
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: bottom 0.3s ease-in-out;
}

#bottom-sheet p {
    margin: 0;
    padding: 20px;
}

#bottom-sheet::before {
    content: '';
    display: block;
    width: 100%;
    height: 50px; /* The visible portion when collapsed */
    border-top: 1px solid #ccc;
    cursor: pointer;
}

/* end bottom sheet */

/* sticky bar */
#sticky-bar {
    position: fixed;
    bottom: -50px; /* Start off-screen */
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
}
/* end sticky bar */



#task-details{

    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-bottom: 25px;
}

#auftragsnummer{

    font-size: 18px;
    font-weight: 600;
    padding: 5px 0 2px 0;
}

#auftragsname{
    font-size: 16px;
    font-weight: 600;
    padding: 0 0 20px 0;
}


#aktueller_status{

    padding: 7px 0;
    background: #EB8105;
    width: 175px;
    text-align: center;
    border-radius: 15px;
}

#status-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

#status-navigation-title p{

    margin: 0;
    display: flex;
    justify-content: center;
    font-size: 12px;
}

#left-arrow, #right-arrow {
    background-color: #f1f1f1;
    cursor: pointer;
    margin: 0 5px;
}

#left-arrow:disabled, #right-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

#left-label, #right-label {
    margin: 0 10px;
}

form#task-form{
    margin-top: 10px;
    font-size: 10px;
}

.btn_search{
    font-size: 10px !important;
}


.ctn_center{
    display: flex;
    justify-content: center;
}


#show_timer{

    font-size: 28px;
    font-weight: 600;
}

.search-result{
    list-style: none;
    font-size: 12px;
    background-color: #cccccc;
    margin-bottom: 4px;
}

.search-result :hover, .search-result :active{

    background-color: #827e7e;

}

.app_version{

    display: flex;
    justify-content: center;
    font-size: 10px;
    font-style: italic;
}


#search_ul{

    padding: 5px;
}

