﻿body {
    font-family: 'Cairo', 'sans-serif';
}

p, h1, h2, h3, h4, h5, h6, h7 {
    font-family: 'Cairo', 'sans-serif';
}
video {
    width: 100%; /* الفيديو يأخذ كامل عرض العنصر */
    height: 220px; /* ارتفاع ثابت */
    object-fit: cover; /* ضمان تناسق المحتوى داخل الفيديو */
    border-radius: 5px;
    margin-bottom: 10px;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: start;
    align-items: flex-start;
    padding: 0;
}

.video-item {
    flex: 1 1 calc(33% - 10px);
    max-width: calc(33% - 10px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
}


audio {
    width: 100%; /* عرض الصوت */
    margin-top: 10px;
}

h3, h4 {
    margin: 5px 0;
}

.audio-controls {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

#filterDropdown {
    width: 69vw;
    box-sizing: border-box;
    padding: 10px;
    font-size: 16px;
}
