/* Mitt Sverige specific styles */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem auto;
  max-width: 600px;
  padding: 1rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.pagination a {
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
}

.pagination a:hover {
  background: #f8f9fa;
  color: #333;
  border-color: #d1d5db;
}

.pagination .current {
  background: #2d3a5a;
  color: white;
  border: 1px solid #2d3a5a;
}

.pagination .disabled {
  background: #f8f9fa;
  color: #ccc;
  border: 1px solid #f0f0f0;
  cursor: not-allowed;
}

.pagination-info {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin: 1rem auto;
  max-width: 600px;
}

.navigation {
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
  padding: 1rem;
}

.nav-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #2d3a5a;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #e5e5e5;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-link:hover {
  background: #f8f9fa;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.card-simple {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  margin: 0.75rem auto;
  max-width: 600px;
  padding: 1rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateY(8px);
  animation: card-fade-in 0.6s cubic-bezier(.77,0,.18,1) both;
}

.card-simple:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}

.card-simple .content {
  flex: 1;
}

.card-simple .title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 0.25rem 0;
}

.card-simple .meta {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.card-simple .author {
  font-weight: 500;
}

.card-simple .year {
  color: #888;
}
