/* Social media links */
.social-media-links {
    text-align: center;  /* This will center the links horizontally */
    margin-bottom: 20px;  /* Adds some spacing below */
}

/* Social media links styling */
.social-media-links a {
    margin: 0 10px;  /* Adds space between each link */
    text-decoration: none;  /* Remove underline */
    color: #000;  /* Change color to black or any color you prefer */
    font-size: 16px;  /* Adjust the font size */
}

.social-media-links a:hover {
    color: #007bff;  /* Change color on hover */
}

/* Center the Featured Video Section */
.featured-video {
    text-align: center; /* Centers the video iframe */
    margin-bottom: 20px; /* Add space below the featured video */
}

.featured-video iframe {
    width: 100%;
    max-width: 800px; /* Control max width */
    height: 450px; /* Adjust height as needed */
}

/* Featured Video Heading */
.featured-video-heading {
    text-align: center; /* Center the heading */
    font-size: 24px; /* Adjust font size */
    margin-bottom: 10px; /* Space between heading and video */
}

/* Button to Show Videos */
.show-videos-button {
    text-align: center; /* Center the Show Videos button */
    margin-top: 20px;
}

/* Navigation buttons (Back/Forward) */
.navigation-buttons {
    text-align: center; /* Center the navigation buttons */
    margin-top: 20px;
}

.navigation-buttons button {
    margin: 10px; /* Space between buttons */
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.navigation-buttons button:hover {
    background-color: #45a049;
}

/* Container for video items */
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal-width columns */
    gap: 20px;
    margin-top: 20px;
}

/* Individual video items */
.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.video-item iframe {
    width: 100%;
    max-width: 560px; /* Adjust width */
    height: 315px; /* Set video height */
}

.video-title {
    font-weight: bold;
    margin-top: 10px;
    font-size: 16px;
}

.video-description {
    font-size: 14px;
    margin-top: 5px;
    word-wrap: break-word;
    width: 100%;
    text-align: center;
}
