

body.protected-content,
body.protected-content * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.protected-content input,
body.protected-content textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body.protected-content img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

@media print {
    body.protected-content {
        display: none !important;
    }

    body.protected-content::before {
        content: "Tisk tohoto obsahu je zakázán.";
        display: block !important;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        font-weight: bold;
        color: #333;
        text-align: center;
    }
}

.sensitive-data {
    position: relative;
    display: inline-block;
}

.sensitive-data.blur-protection {
    filter: blur(0);
    transition: filter 0.3s ease;
}

.sensitive-data.blur-protection:not(:hover) {
    filter: blur(3px);
}

.protected-table {
    position: relative;
}

.protected-table::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.01) 10px,
        rgba(255, 255, 255, 0.01) 20px
    );
}

@keyframes securityWarningSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes securityPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.key-data-grid,
.key-data-item,
.key-data-value,
.char-value,
.design-guide-value {
    position: relative;
}

.characteristics-grid .char-item {
    position: relative;
}

body.protected-content,
body.protected-content p,
body.protected-content span,
body.protected-content div,
body.protected-content td,
body.protected-content th {
    cursor: default !important;
}

body.protected-content a,
body.protected-content button,
body.protected-content [role="button"],
body.protected-content input[type="submit"],
body.protected-content input[type="button"] {
    cursor: pointer !important;
}

@media (max-width: 1024px) {
    .nav-cta {
        display: none !important;
    }
}

