.app-Favorites {
    border-left: 4px solid #f39c12;
}


.dynamic-array-inner-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.dynamic-array-inputs {
    flex-grow: 1;
}

.dynamic-array-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.array-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 5px;
}

.array-item .input-wrapper {
    flex-grow: 1;
}

.array-item .input-wrapper input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}

.dynamic-array-inner-container>.add-array-item {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 5px 8px;
    border-radius: 4px;
    background-color: #417690;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
}

.dynamic-array-inner-container>.add-array-item:hover {
    background-color: #295570;
}

.remove-array-item {
    background-color: #ba2121;
    color: white;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.remove-array-item:hover {
    background-color: #a41e1e;
}
