/* Vyhledávání ve slovníku pojmů - Dropdown verze */

/* Wrapper pro vyhledávání */
.glossary-search-wrapper {
    margin-bottom: 30px;
    margin-top: 20px;
    position: relative;
}

/* Kontejner pro input a tlačítka */
.glossary-search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Vyhledávací pole */
.glossary-search-input {
    width: 100%;
    padding: 12px 90px 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.glossary-search-input:focus {
    border-color: #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
    outline: none!important;
}

.glossary-search-input::placeholder {
    color: #999;
}

/* Tlačítko pro vymazání (×) */
.glossary-search-clear {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    color: #999;
}

.glossary-search-clear:hover {
    color: #333;
    transform: translateY(-50%) scale(1.2);
}

.glossary-search-clear span {
    font-size: 24px;
    line-height: 1;
}

/* Tlačítko pro vyhledávání (🔍) */
.glossary-search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #4CAF50;
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.glossary-search-button:hover {
    background: #45a049;
    transform: translateY(-50%) scale(1.05);
}

.glossary-search-button span {
    font-size: 18px;
    line-height: 1;
}

/* Loading indikátor */
.glossary-search-loading {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #999;
    pointer-events: none;
}

.glossary-search-input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

/* Dropdown kontejner */
.glossary-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.glossary-dropdown.active {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

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

/* Položka v dropdownu */
.dropdown-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

/* Název položky */
.dropdown-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* Popis položky */
.dropdown-item-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-top: 4px;
}


/* Zvýraznění hledaného textu - ORANŽOVÁ */
.dropdown-item mark.highlight {
    background-color: #FF9800;
    color: white;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

/* Žádné výsledky */
.dropdown-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Zvýraznění položky na stránce po kliknutí */
.glossary-highlight {
    animation: highlightPulse 2s ease;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
}

@keyframes highlightPulse {
    0%, 100% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(255, 152, 0, 0.2);
    }
}

/* Scrollbar pro dropdown */
.glossary-dropdown::-webkit-scrollbar {
    width: 8px;
}

.glossary-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

.glossary-dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 8px;
}

.glossary-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsivní design */
@media (max-width: 768px) {
    .glossary-search-container {
        max-width: 100%;
    }
    
    .glossary-search-input {
        font-size: 14px;
        padding: 10px 80px 10px 12px;
    }
    
    .glossary-search-input::placeholder {
        font-size: 13px;
    }
    
    .glossary-dropdown {
        max-height: 300px;
        left: 10px;
        right: 10px;
    }
    
    .dropdown-item-title {
        font-size: 14px;
        padding-right: 0;
    }
    
    .dropdown-item-desc {
        font-size: 12px;
    }
}

/* Přizpůsobení pro tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .glossary-search-container {
        max-width: 90%;
    }
}

