@charset "utf-8";
/* CSS Document */

.success-message {
  color: green;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
body {
    font-family: Arial, sans-serif;
    padding: 20px;
	margin: 0;
  background: #f9f9f9;
}
h1 {
  text-align: center;
  margin-bottom: 30px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	justify-content: center;
 	gap: 20px;
}
.video {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 10px;
  width: 300px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}
  .video:hover {
  transform: scale(1.02);
}
.video h3 {
  font-size: 16px;
  margin: 10px 0;
  text-align: center;
}
iframe {
  width: 100%;
  height: 170px;
  border: none;
  border-radius: 4px;
}
.pagination {
  margin-top: 30px;
  text-align: center;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 12px;
    background: #eee;
    text-decoration: none;
    border-radius: 4px;
}
.pagination a:hover {
    background: #ccc;
}
.page-btn {
  margin: 0 5px;
  padding: 8px 12px;
  background: #f0f0f0;
  text-decoration: none;
  border-radius: 4px;
  color: #333;
}
.page-btn:hover {
  background: #ccc;
}


/* 📱 Mobile Styles */
@media (max-width: 600px) {
  .video {
    width: 90%;
  }

  iframe {
    height: 200px;
  }

  h1 {
    font-size: 24px;
  }
}
