/* Override avec les styles de similarite-serp pour le dark theme */
.url-input {
    margin-right: 5px;
}

.remove-icon {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #ef4444;
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.2s;
}

.search-result:hover .remove-icon {
    opacity: 1;
}

/* Style des résultats Google exactement comme similarite-serp */
.google-search-results {
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    width: 100%;
    background: transparent;
}

.search-result {
    margin-bottom: 26px;
    background: transparent;
    position: relative;
}

.search-position {
    color: #9aa0a6;
    font-size: 12px;
    margin-bottom: 3px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-favicon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.search-link-container {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.search-cite {
    font-size: 14px;
    line-height: 1.3;
    color: #bdc1c6;
}

.search-cite-domain {
    color: #bdc1c6;
}

.search-cite-path {
    color: #9aa0a6;
}

.search-link {
    color: #FC5D1F !important;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.search-link:hover {
    color: #ff7a00 !important;
    text-decoration: underline;
}

.search-title {
    color: #8ab4f8 !important;
    font-size: 20px;
    line-height: 1.3;
    text-decoration: none;
    margin-bottom: 3px;
    display: block;
    transition: text-decoration 0.1s;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

.search-title:hover {
    text-decoration: underline;
}

.search-snippet {
    color: #bdc1c6 !important;
    font-size: 14px;
    line-height: 1.58;
    font-family: Arial, sans-serif;
    max-width: 48em;
}

#data-container {
    width: 100%;
    background: transparent !important;
    padding: 2rem;
}

#data-container.hidden {
    display: none;
}

/* Custom scrollbar pour le dark theme */
#data-container::-webkit-scrollbar {
    width: 8px;
}

#data-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

#data-container::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.3);
    border-radius: 4px;
}

#data-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.5);
}

.link-container {
    display: flex;
    align-items: center;
}