.overview {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    gap: 1em;
    margin-bottom: 0.5em;
    align-items: center;
    justify-content: center;
}

.overview-container {
    display: flex;
    width: 100%;
    min-height: 29rem;
    align-items: flex-start;
    padding: 0 2em 0 2em;
    align-self: center;
    /*background-color: var(--plain-white);*/
    border-radius: 1em;
    /*border: 1px solid var(--light-gray, #c8ced7);*/
}
    .overview-container img {
        align-self: center;
        aspect-ratio: 1;
        object-fit: contain;
    }

    

.overview-data {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 2em;
    max-height: calc(var(--panel-height) - 1em);
}

.overview-data-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
    .overview-data-header button {
        display: flex;
        height: fit-content;
        margin-left: auto;
    }

.overview-data-body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: var(--panel-body-height);
}

.overview-data-column {
    display: flex;
    flex-direction: column;
    margin: 0 2.5em;
}

.overview-data-object {
    display: flex;
    flex-direction: column;
    margin: 0.5em 0;
}
    .overview-data-object span {
        font-weight: 600;
    }


.overview-panel {
    display: flex;
    flex-direction: column;
    min-width: 32rem;
    height: 20rem;
    background-color: var(--plain-white);
    border-radius: 1em;
    /*border: 1px solid var(--light-gray, #c8ced7);*/
    padding: 1em;
}

.overview-chart-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
}

.overview-panel h5 {
    margin: 0.5em 0 1.5em 0.5em;
}

/* New Components */

item-overview {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1em;
    margin-bottom: 0.5em;
    /*background-color: var(--plain-white);*/
    /*border: 1px solid var(--light-gray, #c8ced7);*/
    border-radius: 1rem;
    padding: 0.5em;
    min-height: 27.5rem;
    width: 100%;
}

overview-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem 0 2rem;
}

overview-head nb-icon {
    width: 36px;
    height: 36px;
}

overview-body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0 3rem 0 3rem;
    gap: 1rem;
    max-height: 21rem;
    min-height: 21rem;
}

overview-field {
    display: flex;
    flex-direction: column;
    margin: 0.5em 0;
    width: 25%;
}
    overview-field span {
        font-weight: 600;
    }
    
.modal-overview overview-field {
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .overview {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    overview-body {
        max-height: 23rem;
    }
}
    
