/* Bookmarks List Styles */

.sbv-bookmarks-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.sbv-no-bookmarks {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.sbv-no-bookmarks p {
  margin-bottom: 10px;
  color: #666;
}

.sbv-bookmarks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ddd;
}

.sbv-bookmarks-header h3 {
  margin: 0;
  color: #333;
  font-size: 24px;
}

.sbv-bookmark-count {
  background: #0073aa;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

.sbv-bookmarks-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sbv-bookmark-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.sbv-bookmark-item:hover {
  border-color: #0073aa;
  box-shadow: 0 2px 8px rgba(0, 115, 170, 0.1);
}

.sbv-bookmark-date {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}

.sbv-bookmark-date time {
  display: block;
  background: #f0f0f0;
  padding: 8px 4px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #2e3333;
  line-height: 1.3;
}

.sbv-bookmark-content {
  flex: 1;
}

.sbv-bookmark-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1.4;
}

.sbv-bookmark-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sbv-bookmark-title a:hover {
  color: #0073aa;
}

.sbv-bookmark-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.sbv-bookmark-link {
  color: #0073aa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sbv-bookmark-link:hover {
  color: #005a87;
  text-decoration: underline;
}

.sbv-bookmark-actions {
  display: flex;
  gap: 8px;
}

.sbv-remove-bookmark {
  background: #dc3545;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sbv-remove-bookmark:hover {
  background: #c82333;
}

.sbv-bookmark-unavailable {
  opacity: 0.7;
}

.sbv-bookmark-unavailable .sbv-bookmark-title {
  color: #666;
  font-style: italic;
}

.sbv-bookmark-unavailable p {
  margin: 5px 0;
  color: #999;
}

/* Responsive Design */
@media (max-width: 600px) {
  .sbv-bookmarks-list {
    padding: 15px;
  }
  
  .sbv-bookmarks-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .sbv-bookmark-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .sbv-bookmark-date {
    width: auto;
    text-align: left;
  }
  
  .sbv-bookmark-date time {
    display: inline-block;
    padding: 4px 8px;
  }
  
  .sbv-bookmark-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .sbv-bookmarks-header h3 {
    font-size: 20px;
  }
  
  .sbv-bookmark-title {
    font-size: 16px;
  }
}

/* Auth required message */
.sbv-auth-required {
  text-align: center;
  padding: 20px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  color: #856404;
  margin: 15px 0;
}
