/* Search & Method Cards */
.search-methods {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.method-card {
    flex: 1;
    margin: 0 5px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.method-card.active {
    background-color: #e7f1ff;
    border-color: #007bff;
}

.method-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.method-card.search i {
    color: var(--primary);
}

.method-card.scan i {
    color: var(--success);
}

.method-card h6 {
    font-weight: bold;
    margin-bottom: 5px;
}

.method-card p {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .search-methods {
        flex-direction: column;
    }
    .method-card {
        margin-bottom: 10px;
    }
}
