.tablet-container .mud-dialog-container, .mud-appbar, .ranger-mobiletab-container {
    position: absolute !important;
}
.tablet-container .mud-dialog-container .mud-overlay {
    position: absolute !important;
}

.tablet-container {
    /*width: 610px;*/
    /*max-width: 610px;*/
    /*height: 900px;*/
    /*max-height: 900px;*/
    width: 45rem;
    max-width: 45rem;
    height: 60rem;
    max-height: 60rem;
    overflow: hidden;
}

.tablet-container .tablet-frame {
    border-radius: 30px;
    background-color: #000;
    border-width: 10px;
    height: 100%;
}

.tablet-container .tablet-frame .tablet-screen {
    width: auto;
    height: -webkit-fill-available;
    padding: 35px 25px 55px;
    overflow: hidden;
}

.tablet-container .tablet-frame .tablet-screen .tablet-screen-content {
    height: 100%;
    width: 100%;
    background: white;
    overflow: hidden;
}

.tablet-container .tablet-frame .tablet-screen .tablet-screen-content.gradient {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.tablet-container .tablet-frame .tablet-screen .tablet-screen-content .statusbar {
    padding: 6px;
    background: #39169c;
    height: 20px;
}

.tablet-container .tablet-frame .tablet-screen .tablet-screen-content .statusbar #wifi {
    color: white;
    font-size: 12px;
    position: relative;
    bottom: 20px;
}

.tablet-container .tablet-frame .tablet-screen .tablet-screen-content .statusbar #reception {
    color: white;
    font-size: 12px;
    position: relative;
    bottom: 20px;
}

.tablet-container .tablet-frame .tablet-screen .tablet-screen-content .statusbar #battery {
    color: white;
    font-size: 14px;
    position: relative;
    bottom: 18px;
}

.tablet-container .tablet-frame .tablet-screen .tablet-screen-content .statusbar #clock {
    color: white;
    font-size: 13px;
    position: relative;
    bottom: 4px;
}

.tablet-container .tablet-frame .tablet-screen .tablet-screen-content .main-content {
    height: calc(100% - 20px);
}

.tablet-container .tablet-frame .tablet-buttons {
    position: relative;
    bottom: 45px;
    display: flex;
    justify-content: center;
}

.tablet-container .tablet-frame .tablet-buttons .main-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), transparent 70%);
}

.zoomed-out {
    transform: scale(0.75);
    /* Skaliert den Inhalt auf 50% */
    transform-origin: center center;
    /* Setzt den Ursprung der Transformation */
    transition: transform 0.5s ease-in-out;
    /* Animierter Übergang für den Effekt */
    -webkit-box-shadow: 0px 0px 18px -3px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 0px 18px -3px rgba(0, 0, 0, 0.41);
}

.zoomed-in {
    transform: scale(1);
    /* Skaliert den Inhalt auf 50% */
    transform-origin: center center;
    /* Setzt den Ursprung der Transformation */
    transition: transform 0.5s ease-in-out;
    /* Animierter Übergang für den Effekt */
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

.zoom-area {
    height: 100%;
    width: 100%;
    display: flex;
    gap: 30px;
}

.app-frame {
    flex: 0 0 auto;
    scroll-snap-align: center;
    /* Definiert, wie das Element im Container ausgerichtet wird */
    /* Weitere Stile für Ihre Elemente */
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.overlay-appinfo {
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 0.3s, opacity 0.3s ease-in-out;
}

.overlay-appinfo.enabled {
    visibility: visible;
    /* Machen Sie es sichtbar, wenn aktiv */
    opacity: 1;
    transition-delay: 0s;
}

.overlay-appinfo .appinfo-card {
    height: 125px;
    background: white;
    bottom: 0;
    position: absolute;
    width: 100%;
}

.overlay-appinfo .appinfo-card .appinfo-avatar {
    width: 100px;
    height: 100px;
    background: transparent;
    position: relative;
    margin: auto;
    display: flex;
    top: -50px;
}

.overlay-appinfo .appinfo-card .appinfo-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.overlay-appinfo .appinfo-card span {
    text-align: center;
    display: block;
    font-weight: bold;
    font-size: 22px;
    position: relative;
    top: -40px;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
