body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #a7c832;
  color: #1c1919;
}

.container {
  display: flex;
  overflow-y: auto;
}

/* PANELS */
.panel {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #444;
  box-sizing: border-box;
  overflow-y: auto;
  transition: min-height 0.3s ease;
}


.panel:hover,
.panel:active {
  min-height: 1000px;
}


.left-panel { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(208, 203, 195, 0.9);
  z-index: 1;
}
.middle-panel { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(208, 203, 195, 0.9);
  z-index: 2;
}
.right-panel { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(208, 203, 195, 0.9);
  border-right: none;
  z-index: 3;
}
/* BUTTONS */
button {
  display: inline-block;
  margin: 6px 0;
  padding: 8px 12px;
  background-color: #88c070;
  color: #fff;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: #bad9a7;
}

/* ICON NOTES */
.icon-list {
  margin-top: 10px;
}

.icon-card {
  background-color: #d0cbc3;
  padding: 10px;
  margin-bottom: 10px;
  cursor: grab;
  border: 2px solid transparent;
}
.icon-card.selected {
  border-color: #00bcd4;
}
.icon-card h4 {
  margin: 0 0 5px;
}
.icon-card textarea {
  width: 100%;
  background-color:#d6c9b8;
  color: #1c1919;
  border: 1px solid #555;
  padding: 6px;
  box-sizing: border-box;
}

/* CONTEXT BUILDER */
.dropzone {
  min-height: 200px;
  border: 2px dashed #888;
  padding: 10px;
  margin-top: 15px;
  box-sizing: border-box;
}

.context-item {
  background-color: #d6c9b8;
  margin: 4px 0;
  padding: 4px 6px;
  cursor: pointer;
  border: 1px solid transparent;
}
.context-item.selected {
  border-color: #ff9800;
}

.generate-btn {
  margin-top: 15px;
  background-color: #00897b;
}
.generate-btn:hover {
  background-color: #00bfa5;
}

/* DISPLAY BOX */
#displayOutput img {
  max-width: 100%;
  margin-top: 10px;
}

/* CHAT BOX */
.chatbox {
  margin-top: 20px;
}
.chatbox textarea {
  width: 100%;
  height: 60px;
  background-color: #d6c9b8;
  color: #1c1919;
  border: 1px solid #555;
  padding: 8px;
  box-sizing: border-box;
}
.chatbox button {
  margin-top: 8px;
}

/* SLIDESHOW */
  .slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
  }

  .slides {
    display: none;
  }

  .fade {
    animation: fadeEffect 1.5s;
  }

  @keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
  }

  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
  }

  .next {
    right: 0;
    border-radius: 0 3px 3px 0;
  }

  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
