 body {
      font-family: Arial, sans-serif;
      background-color: #494d64;
      color: #f0c6c6;
      margin: 0;
      padding: 0;
    }
    #searchBar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #494d64;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      z-index: 100;
      display: flex;
      justify-content: center;
    }
    #searchInput {
      width: 80%;
      max-width: 500px;
      padding: 8px 16px;
      font-size: 16px;
      border: 2px solid #c6a0f6;
      border-radius: 20px;
      outline: none;
      color: #f0c6c6;
      background: #181926;
      transition: border-color 0.2s;
    }
    #searchInput:focus {
      border-color: #ed8796;
    }
    #quotesList {
      margin-top: 70px;
      padding: 20px;
    }
    .quote-item {
      background: #181926;
      color: #ed8796;
      padding: 15px;
      margin: 10px 0;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(198,160,246,0.08);
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .quote-item:hover {
      background: #494d64;
      color: #f0c6c6;
      border-color: #c6a0f6;
    }
    .quote-text {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .quote-author {
      font-size: 14px;
      color: #c6a0f6;
      font-style: italic;
    }
    #fullscreenQuote {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #181926;
      z-index: 90;
      display: none;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-direction: column;
      padding-top: 70px;
      color: #ed8796;
    }
    #fullscreenQuote .content {
      font-size: 24px;
      max-width: 80%;
      margin: 0 auto;
      color: #ed8796;
    }
    #fullscreenQuote .author {
      font-size: 18px;
      color: #c6a0f6;
      margin-top: 20px;
      font-style: italic;
    }
    #fullscreenQuote .context {
      font-size: 16px;
      color: #f0c6c6;
      margin-top: 12px;
      font-style: normal;
    }
    #resetButton {
      margin-top: 32px;
      padding: 10px 32px;
      background: #c6a0f6;
      color: #181926;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      font-weight: bold;
    }
    #resetButton:hover {
      background: #ed8796;
      color: #494d64;
    }
    .top-link {
  display: flex;
  align-items: center;
  color: #c6a0f6;
  text-decoration: none;
  font-weight: bold;
  padding: 0 18px;
  font-size: 16px;
  transition: color 0.2s;
  height: 40px;
  line-height: 40px;
}
.top-link:hover {
  color: #ed8796;
  text-decoration: underline;
}
.left-link { margin-right: 6px; }
.right-link { margin-left: 6px; }
