body {
    background-color: #111;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    zoom: 1.1; /* Skalierung für FullHD auf 65" */
}

.packstation-title {
    margin-top: 25px;
}

.card {
    border-radius: 1rem;
}

.alert-triangle {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 80px;
    height: 70px;
    z-index: 10;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid red;
    position: relative;
    animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
