.hunter-search-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hunter-search-title {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.hunter-search-form {
    margin-bottom: 30px;
}

.hunter-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    position: relative;
}

.hunter-input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.hunter-input:focus {
    outline: none;
    border-color: #ff6b35;
}

.hunter-search-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
}

.hunter-search-btn:hover {
    background: #e55a2b;
}

.hunter-search-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.hunter-loading {
    display: none;
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
}

.hunter-loading.active {
    display: block;
}

.hunter-results {
    margin-top: 30px;
}

.hunter-company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #ff6b35;
}

.hunter-company-name {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hunter-company-details {
    color: #7f8c8d;
    line-height: 1.6;
}

.hunter-contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.hunter-contact-card {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.hunter-contact-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hunter-contact-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.hunter-contact-email {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 8px;
    word-break: break-all;
}

.hunter-contact-details {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.5;
}

.hunter-confidence {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.hunter-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.hunter-info {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hunter-input-group {
        flex-direction: column;
    }
    
    .hunter-input {
        width: 100%;
        min-width: 100%;
        box-sizing: border-box;
    }
    
    .hunter-search-btn {
        width: 100%;
        min-width: 100%;
    }
    
    .hunter-contacts-grid {
        grid-template-columns: 1fr;
    }
}



/* Stili per i bottoni azione */
.hunter-contact-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hunter-action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.hunter-email-btn {
    background: #3498db;
    color: white;
}

.hunter-email-btn:hover {
    background: #2980b9;
}

.hunter-ai-btn {
    background: #9b59b6;
    color: white;
}

.hunter-ai-btn:hover {
    background: #8e44ad;
}

.hunter-action-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.hunter-action-btn.success {
    background: #27ae60;
}

.hunter-action-btn.success:hover {
    background: #229954;
}

/* Indicatori di stato */
.hunter-contact-status {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hunter-status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.hunter-status-email {
    background: #e8f4fd;
    color: #0c5460;
}

.hunter-status-ai {
    background: #f3e5f5;
    color: #6a1b9a;
}

@media (max-width: 480px) {
    .hunter-contact-actions {
        flex-direction: column;
    }
    
    .hunter-action-btn {
        min-width: 100%;
    }
}

