.content-area-app > .card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    padding-bottom: 15px;
    overflow-y: auto;
}
.home-container {
    display: flex;
    flex-direction: column;
    gap: 20px 5px;
}

.home-module {
    position: relative;
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.home-module-move {
    flex: 0 0 30px;
}
.home-module-delete {
    flex: 0 0 30px;
}

.module-container {
    position: relative;
    flex: 1;
    min-height: 100px;
    border-radius: 8px;
    border: 1px solid var(--border-color);;

}


.home-module-move {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;
}

.home-module-move img {
    width: 20px;
    height: auto;
    cursor: grab;
}
.home-module-delete {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;
}

.home-module-delete img {
    width: 20px;
    height: auto;
}

.field-items {
    height: 110px;
    display: flex;
    gap: 5px;
    justify-content: center; /* horizontal center */
    overflow: auto;
}

.field-item {
    height: 100px;
    width: 100px;
}

.item-preview {
    flex: 0 0 100px;          /* do not grow or shrink, fixed 100px width */
    height: 100px;
    width: 100px;
    box-sizing: border-box;
    background: #eee;         /* visual placeholder */
    border: 1px solid #ccc;
}

.item-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* maintain aspect ratio */
}

.item-add {
    border: 2px dashed #ccc;
    background-color: #f9f9f9;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    padding: 30px;
}
