.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Zůstává stejné */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px; /* max šířka galerie */
}

.video-card {
    background-color: #1f1f1f;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.video-info {
    padding: 1rem;
}

.video-info h3 {
    color: #ff4c4c;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.video-info a {
    background-color: #ff4c4c;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.2s;
}

.video-info a:hover {
    background-color: #e03c3c;
}

/* Filtr bar se zarovnáním */
.filter-bar {
  background-color: #1f1f1f;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #eee;
  box-shadow: 0 2px 6px rgba(255, 0, 0, 0.3);
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-bar label {
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

.filter-bar select {
  background-color: #333;
  border: 1px solid #cc0000;
  border-radius: 6px;
  padding: 6px 12px;
  color: #eee;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.filter-bar select:hover,
.filter-bar select:focus {
  background-color: #cc0000;
  border-color: #ff4d4d;
  color: white;
  outline: none;
}
