﻿/* ====== HEADER STIL MODERN ====== */
.vmk-header {
    background: linear-gradient(90deg, #1E3A8A, #2563EB);
    color: #fff;
    padding: 10px 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vmk-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}

.vmk-logo a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.vmk-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .vmk-nav a,
    .vmk-dropdown-btn {
        color: #fff;
        background: none;
        border: none;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .vmk-nav a:hover,
        .vmk-dropdown-btn:hover {
            color: #cbd5f9;
        }

/* ====== BUTONI VERIFIKO ====== */
.vmk-btn-main {
    background: #fff;
    color: #1E3A8A;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
}

    .vmk-btn-main:hover {
        background: #E0E7FF;
    }

/* ====== MENU MOBILE ====== */
.vmk-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ====== PANELI I RAPORTEVE ====== */
.vmk-report-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.5);
    transition: height 0.4s ease;
    z-index: 999;
}

    .vmk-report-panel.show {
        height: 100%;
    }

.vmk-panel-content {
    background: #fff;
    color: #1E3A8A;
    max-width: 600px;
    margin: 100px auto;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
    animation: vmkFadeIn 0.3s ease;
}

@keyframes vmkFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vmk-panel-content h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.vmk-report-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .vmk-report-buttons button {
        background: linear-gradient(90deg, #2563EB, #1E3A8A);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 10px;
        font-size: 16px;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .vmk-report-buttons button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37,99,235,0.4);
        }

.vmk-close-btn {
    background: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
    border-radius: 8px;
    padding: 8px 15px;
    margin-top: 25px;
    cursor: pointer;
    font-weight: 600;
}

    .vmk-close-btn:hover {
        background: #1E3A8A;
        color: white;
    }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .vmk-menu-toggle {
        display: block;
    }

    .vmk-nav {
        display: none;
        flex-direction: column;
        background: #1E3A8A;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 15px 0;
    }

        .vmk-nav.show {
            display: flex;
        }
}


/* === POPUP OVERLAY === */
.report-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(3px);
    transition: opacity 0.3s ease;
}

.report-popup-overlay.active {
    display: flex;
    opacity: 1;
}

/* === POPUP BOX === */
.report-popup {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 35px rgba(0,0,0,0.45);
    animation: slideUp 0.3s ease-out;
}

/* === HEADER === */
.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #1E3A8A, #2563EB);
    color: white;
    padding: 12px 18px;
}

.report-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.report-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.report-close:hover {
    transform: rotate(90deg);
}

/* === BODY – Scroll i butë === */
.report-body {
    overflow-y: auto;
    background: #fafafa;
    padding: 20px;
    scroll-behavior: smooth;
}

.report-body::-webkit-scrollbar {
    width: 10px;
}
.report-body::-webkit-scrollbar-thumb {
    background: #2563EB;
    border-radius: 5px;
}
.report-body::-webkit-scrollbar-thumb:hover {
    background: #1E3A8A;
}

.report-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* === ANIMACIONET === */
@keyframes slideUp {
    from { transform: translateY(25px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}











