/**
 * Стили для страницы ИИ-поиска
 *
 * @package GG_2025
 */

.ai-search-page {
    min-height: 600px;
}

.ai-search-description {
    margin-bottom: 30px;
    font-size: 1em;
    line-height: 1.6;
    color: #444;
}


/* Форма поиска */
.ai-search-form-wrapper {
    background: #e9ecef;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #dee2e6;
    border-radius: 16px;
}

.ai-search-form {
    width: 100%;
}

.ai-search-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.ai-search-input {
    flex: 1;
    font-size: 1rem;
    padding: 12px;
    border: 2px solid #ced4da;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
    color: #212529;
}

.ai-search-input::placeholder {
    color: #6c757d;
    font-size: 1rem;
}

.ai-search-input:focus {
    border-color: #09924E;
}

.ai-search-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px;
    background: #09924E;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.ai-search-submit:hover {
    background: #077a3e;
}

.ai-search-hint {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.ai-search-results {
    margin-top: 40px;
}

/* Ошибка */
.ai-search-error {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    color: #856404;
    font-size: 1.2rem;
    padding: 25px 30px;
    margin-bottom: 30px;
}

.ai-search-error__content strong {
    margin-bottom: 10px;
}


/* Источники */
.ai-search-sources {
    margin-bottom: 40px;
}

.ai-search-sources__header {
    color: #495057;
    margin-bottom: 15px;
}

.ai-search-sources__list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
}

a.ai-search-source-link {
    padding: 5px 0;
    text-decoration: none !important;
}

.ai-search-source-link__title {
    font-weight: 600;
    font-size: 1rem;
    color: #212529;
    line-height: 1.4;
}

.ai-search-source-link__date {
    font-size: 0.8rem;
    color: #adb5bd;
}


/* Контент */
.ai-search-generated {
    /* background: #fff; */
    border: 1px solid #dee2e6;
    border-radius: 16px;
    overflow: hidden;
}

.ai-search-generated__header {
    padding: 25px 30px;
    border-bottom: 1px solid #dee2e6;
}

.ai-search-generated__header h1 {
    margin: 0;
    font-size: 1.7rem;
    color: #212529;
    line-height: 1.3;
}

.ai-search-generated__content {
    padding: 30px;
}

/* Адаптивность */
@media (max-width: 768px) {

    .ai-search-form-wrapper {
        padding: 20px;
    }

    .ai-search-input-wrapper {
        flex-direction: column;
    }

    .ai-search-submit {
        width: 100%;
    }

    .ai-search-generated__content {
        padding: 20px;
    }
}

/* Блок загрузки */
.ai-search-preloader {
    background: #eee;
    text-align: center;
    padding: 40px;
    margin-top: 40px;
}

.ai-search-preloader p {
    color: #888;
    margin: 0;
}

