/*
Theme Name: Toplax Child
Template:   toplax
Theme URI: https://1.envato.market/toplax-wp
Description: Manufacturing WordPress Theme
Author: Awaiken
Author URI: https://awaikenthemes.com/
Version: 1.0.0
Text Domain: toplax-child
*/

.verejne-obstaravanie-container {
            display: flex;
            gap: 80px;
            margin: 0 auto;

        }

        .sidebar {
            flex: 0 0 414px;
        }

        .main-title {
            background: #222;
            color: white !important;
            padding: 24px;
            margin: 0;
            border-radius: 30px 30px 0 0;
            font-size: 20px;
            font-weight: 700;
            text-align: left;
        }

        .tema-repeater {
            background: white;
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.09);
        }

        .tema-item {
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
        }

        .tema-item.active {
            background: #EF5A2B;
            color: white;
        }

        .tema-item.active .tema-title {
            color: white;
        }

        .tema-item.active .arrow {
            color: white;
        }

        .tema-item:last-child {
            border-radius: 0 0 30px 30px;
        }

        .tema-title {
            padding: 24px;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #222;
            line-height: 1.4;
            display: flex;
            justify-content: space-between;
        }

        .tema-item:hover:not(.active) {
            background: #f8f9fa;
        }

        .content-area {
            flex: 1;
            background: white;
            min-height: 500px;
            position: relative;
        }

        .subory-container {
            display: none;
        }

        .subory-container.active {
            display: block;
        }

        .subor-item {
            display: flex;
            align-items: center;
            padding: 24px 0px;
            background: #fff;
            border-bottom: 1px solid #e2e2e2;
            transition: all 0.2s ease;
            position: relative;
            gap: 12px;
        }

        .subor-item:hover {
            border-color: #EF5A2B;
        }

        .file-icon {
            font-size: 20px;
            color: #EF5A2B;
            flex-shrink: 0;
        }

        .subor-link {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            flex: 1;
            font-weight: 500;
        }

        .subor-item .download-icon {
            font-size: 16px;
            color: #EF5A2B;
            opacity: 0;
            transition: all 0.2s;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .subor-item:hover .download-icon {
            opacity: 1;
        }

        .tema-item .arrow svg {
            stroke: #EF5A2B;
        }

        .tema-item.active .arrow svg {
            stroke: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .verejne-obstaravanie-container {
                flex-direction: column;
                gap: 20px;

            }

            .sidebar {
                flex: none;
            }

        }

.dokumenty-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .dokument-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 24px 40px;
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 40px;
            transition: all 0.2s ease;
            position: relative;
            min-height: 104px;
        }

        .dokument-item:hover {
            background: #fff8f0;
            border-color: #ff8c00;
        }

        .file-icon {
            font-size: 20px;
            color: #ff8c00;
            flex-shrink: 0;
        }

        .dokument-link {
            text-decoration: none;
            color: #222;
            font-size: 16px;
            flex: 1;
            line-height: 1.4;
            font-weight: 500;
        }

        .download-text {
            font-size: 16px;
            color: #ff8c00;
            font-weight: 700;
            display: flex;
            gap: 4px;
        }

        @media (max-width: 768px) {
            .dokumenty-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }