body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  transition: background 0.3s, color 0.3s;
}

.dark-mode {
  background: #111;
  color: #fff;
}

header {
  padding: 10px;
  background: #f0f0f0;
}

.top-buttons a, .top-buttons button {
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
  color: #007bff;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

h1 {
  text-align: center;
  margin-top: 30px;
}

.podcast-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

.podcast-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

.dark-mode .podcast-card {
  background: #222;
}

.podcast-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.podcast-card h2 {
  margin-top: 10px;
  font-size: 20px;
}

.podcast-card p {
  font-size: 14px;
  margin: 10px 0;
}

.podcast-card .buttons a {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  background-color: #007bff;
  color: white;
  transition: background-color 0.3s;
}


.cover {
  width: 30px;
  height: 30px;
  object-fit: cover;
}



.podcast-card .buttons a:hover {
  background-color: #0056b3;
}
