#room-customizer-root > .container.py-4 {
	padding: 0;
}

#room-customizer-root #designer-area {
  position: relative;
  isolation: isolate;
  min-height: 600px;
  background: repeating-linear-gradient(to bottom, #f6f9ff, #f6f9ff 50px, #eef3fb 50px, #eef3fb 100px);
  border-radius: 12px;
  margin: 24px 0 16px 0;
  box-shadow: 0 1px 8px #0001;
  min-height: 600px;
  border: 1px solid #ddd;
  min-width: 100%;
  max-width: 100%;
  overflow: auto;
}

#room-customizer-root #connection-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; /* entscheidend für Sichtbarkeit */
}

#room-customizer-root .room-node {
	position: absolute;
	width: 210px;
	height: 150px;
	background: rgba(255,255,255,0.8);
	border-radius: 12px;
	box-shadow: 0 2px 12px #0001;
	border: 2px solid #adc5f6;
	padding: 8px;
	text-align: center;
	z-index: 10;
	transition: box-shadow 0.2s, border-color 0.2s;
	cursor: move;
	user-select: none;
}

#room-customizer-root .room-node:last-of-type {
	border-color: var( --e-global-color-primary );
	border-width: 3px;
}

#room-customizer-root .room-node .entrance-badge {
	transition: all .3s ease-in-out;
	opacity: 0;
	z-index: 99;
	visibility: hidden;
	pointer-events: none;
}
/* #room-customizer-root .room-node:hover .entrance-badge {
	opacity: 1;
	visibility: visible;
} */
#room-customizer-root .products-list {
    transition: all .3s ease-in-out;
	font-size: 15px;
	overflow: hidden;
    height: 85px;
	position: absolute;
	z-index: 10;
}
#room-customizer-root .products-list:hover {
	z-index: 100;
	overflow: visible;
    height: fit-content;
}
#room-customizer-root .products-list .product-badge {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 190px;
    display: block;
}
#room-customizer-root .products-list .product-badge > span.badge {
	display: none;
}
#room-customizer-root .room-header {
  font-weight: bold;
  font-size: 1.06em;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  padding-right: 10px;
  padding-left: 10px;
}

#room-customizer-root .room-title {
	width: 135px; /*110px;*/
    hyphens: auto;
    line-height: 110%;
    font-size: 17px;
}

#room-customizer-root .room-icon {
	font-size: 22px; padding: 0;
	display:none!important; /* new */
}

#room-customizer-root .edit-btn {
  background: none;
  border: none;
  font-size: 1.2em;
  color: #3c74be;
  cursor: pointer;
  padding: 0;
}
#room-customizer-root .exit-btn {
    position: absolute;
    width: 36px;
    height: 36px;
    color: #000;
    border-radius: 100%;
    border: 2px solid #333;
    font-size: 1.23em;
    cursor: pointer;
	padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 12;
}
#room-customizer-root .exit-btn:active,
#room-customizer-root .exit-btn:hover { background: #d2e5fd; }
#room-customizer-root .product-badge {
  display: inline-block;
  margin: 0 2px 3px 0;
  background: #fff6d8;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: 8px;
  font-size: 0.92em;
  padding: 2px 8px;
}
#room-customizer-root .placement-spot {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ffe78e;
  border: 2px solid #ad9800;
  color: #685100;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 1em;
  pointer-events: none;
  z-index: 3;
  opacity: 0.92;
}
#room-customizer-root #addRoomForm #roomTypeGrid .room-type-btn {
	background-color: var(--nova-bg);
	padding: 10px 15px 10px 15px;
	color: #000;
}
#room-customizer-root #addRoomForm #roomTypeGrid .room-type-btn:hover, #room-customizer-root #addRoomForm #roomTypeGrid .room-type-btn.active {
	background-color: var( --e-global-color-primary );
}
#room-customizer-root #addRoomForm #roomTypeGrid .room-type-btn i {
  padding-right: 10px;
}
#room-customizer-root #addRoomForm #roomTypeGrid .room-type-btn img {
	width: 100%;
    max-height: 100px;
    object-fit: cover;
    border-radius: 6px;
}
#room-customizer-root .modal-content {
	max-width: 100%;
    min-width: 550px;
}

#room-customizer-root .modal-content .modal-body {
    overflow-y: auto;
    height: 820px;
    max-height: 63vh;
}

@media screen and (max-height: 800px) {
    #room-customizer-root .modal-content .modal-body {
        height: 600px;
        max-height: 55vh;
    }
}

@media screen and (max-height: 650px) {
    #room-customizer-root .modal-content .modal-body {
        height: 480px;
        max-height: 50vh;
    }
}

@media (max-width: 800px) {
	#room-customizer-root .room-node {
		font-size:.10px
	}
}
