
        body {
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
        }

        .header {
            background-color: white;
            padding: 10px 30px;
            border-bottom: 1px solid #dee2e6;
z-index:9999999;
        }

        .header .logo {
            display: flex;
            align-items: center;
        }

        .header .logo img {
            height: 50px;
        }

        .header .search-form {
            text-align: center;
            margin-top: 10px;
        }

        .header .search-form input[type="text"] {
            font-size: 1.2rem;
            padding: 10px;
            width: 80%;
            max-width: 500px;
            border-radius: 30px;
            border: 2px solid #ced4da;
        }

        .header .search-form button {
            font-size: 1.2rem;
            padding: 10px;
            border-radius: 30px;
            margin-left: -40px;
            background-color: transparent;
            border: none;
        }

        .header .search-form button i {
            color: #6c757d;
        }

        .header .nav-buttons {
            display: flex;
            justify-content: flex-end;
        }

        .header .nav-buttons a {
            margin-left: 20px;
            font-size: 1rem;
            color: #007bff;
            text-decoration: none;
        }

        .header .nav-buttons a:hover {
            text-decoration: underline;
        }

        .footer {
            text-align: center;
            padding: 20px;
            background-color: #f1f1f1;
            border-top: 1px solid #dee2e6;
        }

        .footer p {
            margin: 0;
        }

        pre {
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        /* Existing styles */

        /* Sidebar styles */
        .sidebar {
            height: 100%;
            width: 250px;
            position: fixed;
            z-index: 1000;
            top: 65px;
            left: -250px;
            background-color: #343a40;
            overflow-x: hidden;
            transition: 0.3s;
            padding-top: 60px;
        }

        .sidebar a {
            padding: 15px 25px;
            text-decoration: none;
            font-size: 1.1rem;
            color: #f8f9fa;
            display: block;
        }

        .sidebar a:hover {
            background-color: #495057;
        }

        .sidebar.active {
            left: 0;
        }

/* Botón hamburguesa */
.hamburger {
    position: fixed;
    top: 15px;
    left: 295px;
    z-index: 1100;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.hamburger div {
    width: 100%;
    height: 4px;
    background-color: #343a40;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Opcional: animación cuando está activo */
.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active div:nth-child(2) {
    opacity: 0;
}
.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


        .menu-btn {
            font-size: 1.5rem;
            cursor: pointer;
            color: #343a40;
        }

        @media (min-width: 768px) {
        }





        pre {
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        /* Result Styles */
        .result {
            background-color: #fff;
            padding: 15px;
            border: 1px solid #dee2e6;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        .result a {
            font-size: 1.25rem;
            color: #007bff;
            text-decoration: none;
        }

        .result a:hover {
            text-decoration: underline;
        }

        .result .category {
            font-size: 0.9rem;
            color: #6c757d;
        }

        .result .summary {
            font-size: 1rem;
            color: #333;
        }
