.config-panel {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.config-panel label {
    display: block;
    margin: 15px 0 5px;
}

.config-panel select, 
.config-panel input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
}

.dimensions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dimensions button {
    background-color: #ff6600;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    color: #fff;
}

.preview-panel {
    width: 75%;
    align-items: center;
    justify-content: center;
    background-color: #eef0fa;
}

.front {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top {
    width: 100%;
    height: 100px;
    background-color: rgb(198, 198, 198);
}

.bottom {
    width: 100%;
    height: 100px;
    background-color: rgb(198, 198, 198);
}

.led-screen {
    width: 400px;
    height: 200px;
    background-color: #00000000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#previewImage {
    max-width: 100%;
    max-height: 100%;
}


.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
}

/* Image Section */
.image-section {
  position: relative;
  flex: 1 1 600px;
  max-width: 700px;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  padding: 1rem;
  width: 100%;
}

.text-overlay h1 {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--pink);
}

.text-overlay p {
  font-size: 1rem;
  margin: 0.4rem 0;
}

.map-link {
  color: var(--pink);
  text-decoration: none;
}

.contact {
  margin-top: 0.5rem;
}

/* Responsibility Section */
.responsibility-section {
  /* flex: 1 1 500px; */
  padding: 2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.responsibility-section h2 {
  font-size: 1.8rem;
  color: deeppink;
  margin-bottom: 1rem;
  border-bottom: 3px solid rgb(136, 1, 73);
  padding-bottom: 0.5rem;
}

/* Scroll List */
.scroll-list {
  max-height: 420px;
  overflow-y: auto;
  list-style: none;
  padding-right: 0.8rem;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--text);
}

.scroll-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.scroll-list li::before {
  content: "-";
  position: absolute;
  left: 0;
}

/* Scrollbar Styling */
.scroll-list::-webkit-scrollbar {
  width: 8px;
}

.scroll-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.scroll-list::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }

  .image-section,
  .responsibility-section {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .main-image {
    max-height: 400px;
  }
}
