



th{
    padding: .25rem;
    background-color: var(--action);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

table{
    width: 100%;
    border-radius: .25rem;                            
    font-size: 12px;
    border-collapse: collapse;
    text-align: center;
}

.order_product_row{
    border-bottom: lightgray solid 1px;
}

td{
    padding: .25rem;
}

.order-product-image{
    width: 4rem;
    height: 4rem;
    border-radius: .25rem;

}

.order-ferrerence-qrcode{
    width: 4rem;
    height: 4rem;
}

.order-header{
    display: grid;
    grid-template-columns: 1fr auto;
    padding-bottom: .5rem;
    border-bottom: solid lightgray 1px;
}

.order-total{
    padding: .5rem;
    background-color: var(--action);
    color: white;
    font-weight: bold;
    font-size: 14px;
}
.ean-code{
    width: 10rem;
}

.order-adress{
    padding: 1rem;
    border: solid lightgray 1px;
    margin-bottom: 2rem;
    border-radius: .25rem;
    font-size: 12px;
}

.print-button{
    display:block;
    padding: .25rem .5rem .25rem .5rem;
    background-color: var(--action);
    color: white;
    border-radius: .25rem;
    outline: none;
    border: none;
    margin: .5rem;

}

#status-bar{
    width: 100%;
    height: fit-content;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    justify-items: center;
    position: relative;

    margin-bottom: 0.75rem;
    padding-bottom: 1rem;;
    border-bottom: solid lightgray 1px;
    font-size: 14px;;
}
#status-bar::after{
    content: " ";
    border: solid var(--action) 4px;
    position: absolute;
    top: 1rem;
    left: 0;
    width: calc(100% - 6px);
    z-index: 5;
    border-radius: 20px
}

.status-point{
    width: 2rem;
    height: 2rem;
    border: solid white 4px;

    border-radius: 50%;
    background-color: var(--success);
    z-index: 100;
}

.status-point-not{
    width: 2rem;
    height: 2rem;
    border: solid white 4px;

    border-radius: 50%;
    background-color: var(--error);
    z-index: 100;

}

.status-point-layout{
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
    justify-items: center;
    text-align: center;


}

#order-status-info-box{
    border: solid var(--error) 2px;
    margin: 1rem;
    border-radius: .25rem;
    padding: 1rem;
}

.action-button{
    padding: .25rem .5rem .25rem .5rem;
    background-color: var(--action);
    color: white;
    border-radius: .25rem;
    outline: none;
    border:none;
    width: fit-content;
}

.link-button{
    border: none;
    outline: none;
    padding: .25rem .5rem .25rem .5rem;
    background-color: transparent;
    font-weight: bold;
    border-bottom: 2px solid transparent;
}

.link-button:hover{
    border-bottom: 2px solid black;
}
#button-grid-float-right{
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    justify-content: right;
    align-items: end;
}

