/* Recherche Analyses PDF - Styles */
.pdf-search-wrapper {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pdf-search-form .form-group {
    margin-bottom: 1.5rem;
}

.pdf-search-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.pdf-search-form input[type="text"],
.pdf-search-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    height : auto;
}

.pdf-search-form input[type="text"]:focus,
.pdf-search-form select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.1);
}

.pdf-search-form button {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
}

.pdf-search-results {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #eee;
}

.pdf-item {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.pdf-item:hover {
    background: #e9e9e9;
    transform: translateX(5px);
}

.pdf-info {
    flex-grow: 1;
}

.pdf-name {
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

.pdf-category {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

.pdf-item a {
    background: #0073aa;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}

.pdf-item a:hover {
    background: #005177;
}

.no-results {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: center;
    color: #666;
    font-size: 1.1em;
}

.spinner {
    display: none;
    padding: 1rem;
    text-align: center;
    color: #0073aa;
    font-style: italic;
}

.spinner.is-active {
    display: block;
}

.results-header {
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}
