#layout-container {
    display: flex;
    width: 100%;
    height: 100vh; /* BẮT BUỘC */
    overflow: hidden; /* tránh rò rỉ scroll */
}

#map-container {
    flex: 1;
    position: relative;
}

#goc-nho-panel {
    width: 40%;
    max-width: 480px;

    /* CHO PANEL TỰ CUỘN */
    overflow-y: auto;
    overflow-x: hidden;

    height: 100vh;      /* panel chiếm toàn bộ chiều cao màn hình */
    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    background: #fafafa;
    border-left: 1px solid #ddd;
    position: relative;
    z-index: 2;
}


#goc-nho-panel.hidden {
    display: none;
}

.goc-nho-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.6;
}

.goc-nho-close:hover {
  opacity: 1;
}

#goc-nho-room {
    position: relative;
    width: 100%;
    height: 260px;
}

#goc-nho-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

#aura-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    pointer-events: none;
}

#day-night-icon {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 28px;
}

.divider-soft {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 16px 0;
}

.goc-nho-address {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #555;
}

#goc-nho-history {
  margin-top: 12px;
  font-size: 13px;
  color: #444;
}

.log-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.log-item:last-child {
  border-bottom: none;
}

.log-time {
  color: #222;
  display: block;
  margin-bottom: 2px;
}

.log-user {
  color: #555;
}

.log-comment {
  margin-top: 4px;
  font-style: italic;
  opacity: 0.8;
}
