/* Plot Planner Minimalist Stylesheet */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.4;
    color: #282828;
    background-color: #f2f2f2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px;
  }
  
  h1, h2, h3, h4 {
    color: #282828;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  
  .container {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .panel {
    flex: 1;
    background: #f2f2f2;
    padding: 12px;
    border: none;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }
  
  button {
    background: #d8d8d8;
    color: #282828;
    border: none;
    padding: 6px 12px;
    border-radius: 2px;
    cursor: pointer;
    margin: 4px 0;
    transition: background 0.2s ease;
  }
  
  button:hover {
    background: #c0c0c0;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 8px;
    border: none;
    background: white;
    color: #282828;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }
  
  input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .plot-point {
    background: white;
    padding: 8px;
    margin-bottom: 8px;
    border: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }
  
  .plot-point h4 {
    margin: 0 0 4px 0;
  }
  
  .plot-point p {
    color: #828282;
    margin: 0 0 6px 0;
  }
  
  .constraint {
    background: #f8f8f8;
    padding: 4px 8px;
    margin: 3px 0;
    color: #828282;
    font-size: 0.9em;
  }
  
  .saved-version {
    background: white;
    padding: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }
  
  .saved-version:hover {
    background: #f8f8f8;
  }
  
  .highlight {
    background: #f8f8f8;
  }
  
  /* Remove all borders and outlines */
  * {
    outline: none;
  }
  
  /* Version content styling */
  .version-content h3 {
    margin-top: 0;
    font-size: 1.1em;
  }
  
  .version-content h4 {
    font-size: 0.9em;
    color: #828282;
    margin-bottom: 3px;
  }
  
  .version-content ul {
    padding-left: 18px;
    margin: 4px 0 8px 0;
  }
  
  .version-content li {
    margin-bottom: 2px;
  }
