* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f5f5f5;
  color: #333;
  padding: 40px 20px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

h1 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #111;
}

.status {
  color: #888;
  font-size: 14px;
  margin-bottom: 16px;
}

.status.error {
  color: #e53e3e;
}

#bookmark-list {
  list-style: none;
}

#bookmark-list li {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#bookmark-list li:last-child {
  border-bottom: none;
}

#bookmark-list a {
  font-size: 16px;
  color: #2b6cb0;
  text-decoration: none;
  font-weight: 500;
}

#bookmark-list a:hover {
  text-decoration: underline;
}

.url {
  font-size: 12px;
  color: #888;
}
