/* /ElPlanetaDeMiller.Web/Components/Header.razor.rz.scp.css */
/* Search Container Styles */
.main-nav[b-e5u7t9cm37] {
    background: rgba(26, 31, 58, 0.5);
    border-top: 1px solid #2e3654;
    padding: 15px 0;
}

.search-container[b-e5u7t9cm37] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-form[b-e5u7t9cm37] {
    display: flex;
    width: 100%;
    max-width: 600px;
    position: relative;
    align-items: center;
}

.search-input[b-e5u7t9cm37] {
    flex: 1;
    padding: 14px 55px 14px 20px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid #2e3654;
    border-radius: 30px;
    color: #e8eaf6;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.search-input[b-e5u7t9cm37]::placeholder {
    color: #9fa8da;
    opacity: 1;
}

.search-input:focus[b-e5u7t9cm37] {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(10, 14, 39, 0.95);
}

.search-button[b-e5u7t9cm37] {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #00d4ff;
    color: #0a0e27;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.search-button:hover[b-e5u7t9cm37] {
    background: #6b4ce6;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.search-button:active[b-e5u7t9cm37] {
    transform: translateY(-50%) scale(0.98);
}

.search-button i[b-e5u7t9cm37] {
    font-size: 1rem;
}

/* Search Dropdown Styles */
.search-dropdown[b-e5u7t9cm37] {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 50px;
    background: rgba(26, 31, 58, 0.98);
    border: 2px solid #00d4ff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    animation: dropdownSlideIn-b-e5u7t9cm37 0.3s ease-out;
}

@keyframes dropdownSlideIn-b-e5u7t9cm37 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-item[b-e5u7t9cm37] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(46, 54, 84, 0.5);
}

.search-result-item:last-child[b-e5u7t9cm37] {
    border-bottom: none;
}

.search-result-item:hover[b-e5u7t9cm37],
.search-result-item.active[b-e5u7t9cm37] {
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid #00d4ff;
    padding-left: 17px;
}

.search-result-icon[b-e5u7t9cm37] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b4ce6 0%, #00d4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.search-result-content[b-e5u7t9cm37] {
    flex: 1;
    min-width: 0;
}

.search-result-title[b-e5u7t9cm37] {
    color: #e8eaf6;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-meta[b-e5u7t9cm37] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
}

.search-result-category[b-e5u7t9cm37] {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-category.category-espacio[b-e5u7t9cm37] {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.search-result-category.category-misterio[b-e5u7t9cm37] {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border: 1px solid #9c27b0;
}

.search-result-category.category-ciencia[b-e5u7t9cm37] {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
    border: 1px solid #00e676;
}

.search-result-date[b-e5u7t9cm37] {
    color: #9fa8da;
}

/* Custom scrollbar for dropdown */
.search-dropdown[b-e5u7t9cm37]::-webkit-scrollbar {
    width: 8px;
}

.search-dropdown[b-e5u7t9cm37]::-webkit-scrollbar-track {
    background: rgba(10, 14, 39, 0.5);
    border-radius: 0 15px 15px 0;
}

.search-dropdown[b-e5u7t9cm37]::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 4px;
}

.search-dropdown[b-e5u7t9cm37]::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.7);
}

/* Header Top Content - New Layout */
.header-top-content[b-e5u7t9cm37] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Logo Styles */
.logo-container[b-e5u7t9cm37] {
    text-align: center;
    flex: 1;
}

.logo-link[b-e5u7t9cm37] {
    display: inline-block;
    text-decoration: none;
}

.site-logo[b-e5u7t9cm37] {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.logo-link:hover .site-logo[b-e5u7t9cm37] {
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.8));
    transform: scale(1.05);
}

.site-tagline[b-e5u7t9cm37] {
    color: #ffffff;
    font-size: 1rem;
    margin: 5px 0 0 0;
    font-style: normal;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.5px;
}

.social-links[b-e5u7t9cm37] {
    display: none;
    gap: 15px;
    flex-shrink: 0;
}

.social-icon[b-e5u7t9cm37] {
    color: #9fa8da;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover[b-e5u7t9cm37] {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .header-top-content[b-e5u7t9cm37] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 15px 15px;
    }

    .logo-container[b-e5u7t9cm37] {
        text-align: center;
    }

    .site-logo[b-e5u7t9cm37] {
        height: 100px;
    }

    .site-tagline[b-e5u7t9cm37] {
        font-size: 0.95rem;
    }

    .social-links[b-e5u7t9cm37] {
        justify-content: center;
    }

    .search-container[b-e5u7t9cm37] {
        padding: 0 15px;
    }
    
    .search-form[b-e5u7t9cm37] {
        max-width: 100%;
    }
    
    .search-input[b-e5u7t9cm37] {
        font-size: 0.95rem;
        padding: 12px 50px 12px 18px;
    }
    
    .search-button[b-e5u7t9cm37] {
        width: 38px;
        height: 38px;
    }

    .search-dropdown[b-e5u7t9cm37] {
        right: 45px;
    }

    .search-result-item[b-e5u7t9cm37] {
        padding: 12px 15px;
    }

    .search-result-title[b-e5u7t9cm37] {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-nav[b-e5u7t9cm37] {
        padding: 12px 0;
    }

    .site-logo[b-e5u7t9cm37] {
        height: 80px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Estilos espec�ficos del MainLayout - Vac�o porque usamos app.css global */
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-sudx1pkb7n] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-sudx1pkb7n] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-sudx1pkb7n] {
    font-size: 1.1rem;
}

.bi[b-sudx1pkb7n] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-sudx1pkb7n] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-sudx1pkb7n] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-sudx1pkb7n] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-sudx1pkb7n] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-sudx1pkb7n] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-sudx1pkb7n] {
        padding-bottom: 1rem;
    }

    .nav-item[b-sudx1pkb7n]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-sudx1pkb7n]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-sudx1pkb7n]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-sudx1pkb7n] {
        display: none;
    }

    .collapse[b-sudx1pkb7n] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-sudx1pkb7n] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
