﻿/* استایل تب‌ها */
.tabs {
    display: flex;
    border-bottom: 1px solid #ede7e7;
    margin-bottom: 15px;
    direction:rtl;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

    .tab.active {
        background-color: #fff;
        font-weight: bold;
        color: #6482a8;
        border: 1px solid #6482a8;
    }

/* محتوای تب */
.tab-content {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 0 5px 5px 5px;
}

.tab_header {
    text-align: center;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* بخش عکس‌ها و ویدئوها */
.media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

    .media-grid img, .media-grid video {
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }

.media-item {
    flex: 0 0 300px;
    text-align: center;
}

.media-video {
    flex: 0 0 320px;
}
