/* Styling untuk filter buttons */
.filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.filters button {
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.filters button:hover {
    background-color: #0056b3;
}

/* Styling untuk video gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-item {
    background-color: #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
}

.video-item p {
    margin-top: 10px;
    font-weight: bold;
}