body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .header {
    height: 60px;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
  }
  
  .layout {
    display: flex;
    height: calc(100vh - 60px);
  }
  
  #story-panel {
    width: 35%;
    overflow-y: scroll;
    padding: 20px;
    background: #f5f5f5;
  }
  
  #map {
    width: 65%;
  }
  
  .story {
    background: white;
    margin-bottom: 60px;
    padding: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .story.active {
    border-left: 5px solid #0077ff;
    background: #eef5ff;
  }
  
  .story img {
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
  }