
.infobox {
    display: none;
    position: absolute;
    bottom:-80px; 
    right: 20px;
    color: white;
    background-color: rgba(0, 255, 0, 0.2);
    border: solid 1px;
    border-color: green;
    min-height: 60px;
    min-width: 400px;
    max-width: 70%;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 16px;
    z-index: 100;
}

.errorbox {
    display: none;
    position: absolute;
    bottom:-80px; 
    right: 20px;
    color: white;
    background-color: rgba(255, 0, 0, 0.2);
    border: solid 1px;
    border-color: red;
    min-height: 60px;
    min-width: 400px;
    max-width: 70%;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 16px;
    z-index: 100;
}

#error {
    display: none;
}

#info {
    display: none;
}

@keyframes info_in {
    0% { bottom: -60px; right: 20px; }
    20% { bottom: 20px; right: 20px; }
    90% { bottom: 20px; right: 20px; }
    100% { bottom: 20px; right: -400px; }
} 

.line {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
    color: white;
    width: 51vw;
    height: 5vh;
    border-bottom: 1px solid;
    border-bottom-color: rgba(74, 74, 74, 0);
    font-size: 1vw;
    padding-right: 1vw;
    padding-left: 1vw;
    margin-right: 1vw;
    margin-left: 1vw;
} 

@media (hover: hover) {
    .line:hover {
        background-color: rgba(172, 172, 172, 0.081);
    }
}

.line_left {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: flex-start;
    gap: 1vw;
    width: 45%;
}

.line_right {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: flex-end;
    gap: 1vw;
    width: 55%;
}


/* Longpress Indikator */
.lp-indicator {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(128, 128, 128, 0.5);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lp-indicator-show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.lp-indicator-hide {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}
