/* Bookmark icon in top-right corner */
.save-post-icon {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  color: #555;
  transition: color 0.3s ease;
}
.save-post-icon:hover { color: #004468; }
.save-post-icon.saved { color: #004468; }

/* Reading List tab styles */
.reading-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.reading-list-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 12px;
  text-align: left;
}
.reading-list-item h4 {
  margin: 8px 0;
  font-size: 16px;
  font-weight: 600;
}
.reading-list-thumb {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 8px;
}
.remove-saved-post-btn {
  background: #d9534f;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  transition: background 0.2s ease;
}
.remove-saved-post-btn:hover {
  background: #c9302c;
}
