.app-wrapper {
    @media only screen and (max-width: 1000px) {
        padding: 0;
        margin: 10px;
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
    @media only screen and (min-width: 1000px) {
        flex-direction: row;
        margin: auto;
    }
}

.overview {
    min-height: 400px;
    padding: 10px;
    box-sizing: border-box;
    margin: auto;
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    @media only screen and (min-width: 1000px) {
        width: 450px;
    }
}

.right {
    @media only screen and (min-width: 1000px) {
        width: 450px;
        padding: 40px;
    }
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    justify-content: space-between;
}

.preview {
    width: 100%;
}

.details {
    flex-direction: column;
}

.bottom {
}

/* mobile hide */
@media only screen and (max-width: 1000px) {
    .overview, .details {
        display: none;
    }
}

.mobile-active {
    display: flex !important; /* Nur aktiver Bereich sichtbar */
}
