﻿/* ===== VIDEO POPUP ===== */

.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-popup.active {
    display: flex;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

#videoPopupPlayer {
    width: 100%;
    max-height: 80vh;
    background: black;
}

.video-popup-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.video-controls {
    margin-top: 10px;
    text-align: center;
}

.video-controls button {
    padding: 8px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
}


.profession-view {
    padding: 60px 0;
}

.profession-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: #0b3c6d;
}

.profession-description {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.admin-add-media {
    margin-bottom: 40px;
}

/* МЕДІА */
.media-block {
    margin-top: 50px;
}

.media-block h2 {
    margin-bottom: 20px;
    color: #0b3c6d;
}

.photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* мінімальний відступ */
    align-items: flex-start;
}

.photo-grid img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 220px; /* контроль висоти */
    object-fit: contain;
    border-radius: 10px;
    display: block;
}


.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.video-grid video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 220px; /* як у фото */
    object-fit: contain;
    border-radius: 10px;
    display: block;
}

.empty-media {
    color: #777;
    font-style: italic;
}

.image-popup {
    display: none;           /* popup закритий */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.image-popup.active {
    display: flex;           /* popup відкритий */
}

/* 🔥 ПЕРЕБИВАЄ ВСІ ІНШІ СТИЛІ */
.image-popup img {
    max-width: 95vw !important;
    max-height: 95vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.image-popup-close {
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 90px;
    color: #fff;
    cursor: pointer;
    z-index: 1000000;
}

.media-item {
    position: relative;
    display: inline-block;
}

/* КРУГЛА КНОПКА */
.icon-btn.delete1 {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: #f44336;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 20;
    transition: 0.2s ease;
}

.icon-btn.delete1:hover {
    background: #d32f2f;
    transform: scale(1.1);
}


